From b5b0e274fb4557d33eb9670ed36c9e911afe535d Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 7 Feb 2022 12:53:11 -0500 Subject: [PATCH] cmd-compress: print skipped artifacts more nicely --- src/cmd-compress | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cmd-compress b/src/cmd-compress index 80e021c47d..8d30cae098 100755 --- a/src/cmd-compress +++ b/src/cmd-compress @@ -161,7 +161,7 @@ def compress_one_builddir(builddir): rm_allow_noent(filepath[:-3]) if len(skipped) > 0: - print(f"Skipped artifacts: {skipped}") + print(f"Skipped artifacts: {' '.join(skipped)}") if at_least_one: print(f"Updated: {buildmeta_path}") return at_least_one @@ -251,9 +251,9 @@ def uncompress_one_builddir(builddir): rm_allow_noent(filepath[:-3]) if len(skipped) > 0: - print(f"Skipped artifacts: {skipped}") + print(f"Skipped artifacts: {' '.join(skipped)}") if len(skipped_missing) > 0: - print(f"Skipped missing artifacts: {skipped_missing}") + print(f"Skipped missing artifacts: {' '.join(skipped_missing)}") if at_least_one: print(f"Updated: {buildmeta_path}") return at_least_one