From c6c83781b7fc76ac5e1e3e00f84d5462a0550f24 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Tue, 10 Nov 2020 20:55:09 +0100 Subject: [PATCH] Do not prettify JSON for bundle --- src/cmd/metadata.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/metadata.rs b/src/cmd/metadata.rs index 2d4180ed..32b8677a 100644 --- a/src/cmd/metadata.rs +++ b/src/cmd/metadata.rs @@ -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)?; } -- GitLab