From 5022a0d2c2863304a9e97d42001dafdce840d92d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Mon, 28 Nov 2022 21:16:51 +0100 Subject: [PATCH] =?UTF-8?q?packaging:=20Don=C2=B4t=20print=20sha256sum=20a?= =?UTF-8?q?s=20part=20of=20sha256sum=5Ffrom=5Ffiles()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If you're directly using the output of this function, the info message will show up as part of the string, and that's not what we want. Signed-off-by: Fabiano FidĂȘncio --- tools/packaging/scripts/lib.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/packaging/scripts/lib.sh b/tools/packaging/scripts/lib.sh index b119b6c9c..49520c661 100755 --- a/tools/packaging/scripts/lib.sh +++ b/tools/packaging/scripts/lib.sh @@ -173,7 +173,6 @@ sha256sum_from_files() { files="$(echo $files | tr ' ' '\n' | LC_ALL=C sort -u)" # Concate the files and calculate a hash. shasum="$(cat $files | sha256sum -b)" || true - info "shasum of files $shasum" if [ -n "$shasum" ];then # Return only the SHA field. echo $(awk '{ print $1 }' <<< $shasum)