Skip to content

Commit

Permalink
merge: Write meta.json without prettifying
Browse files Browse the repository at this point in the history
  • Loading branch information
tontinton committed May 25, 2024
1 parent 01bc6b9 commit 131a76c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/merge_directory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ impl MergeDirectory {
let meta_dir = Box::new(RamDirectory::create());
meta_dir.atomic_write(
Path::new("meta.json"),
serde_json::to_string_pretty(&meta)?.as_bytes(),
serde_json::to_string(&meta)?.as_bytes(),
)?;

// Always read the output dir and combined meta dir before any of the input dir meta files.
Expand Down

0 comments on commit 131a76c

Please sign in to comment.