Skip to content

Commit

Permalink
Do not prettify JSON for bundle (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Müller authored Nov 11, 2020
1 parent cf00f12 commit 68080d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl GenerateMetadataCommand {
format!("[{}/{}]", current_progress, self.build_artifact.steps()).bold(),
"Generating bundle".bright_green().bold()
);
let contents = serde_json::to_string_pretty(&metadata)?;
let contents = serde_json::to_string(&metadata)?;
fs::write(&out_path_bundle, contents)?;
}

Expand Down

0 comments on commit 68080d0

Please sign in to comment.