From 0d7e2342071a11e41d31b5bf51274f190e6d6568 Mon Sep 17 00:00:00 2001 From: Nemric <56299157+Nemric@users.noreply.github.com> Date: Thu, 23 Nov 2023 20:01:29 +0100 Subject: [PATCH] Add some verbosity --- Update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Update.sh b/Update.sh index 3059b9b..b422330 100755 --- a/Update.sh +++ b/Update.sh @@ -40,7 +40,7 @@ while [ $# -gt 0 ]; do done data="$streampath/$stream.json" -echo "Checking updates from $stream stream at : $data" +echo "Checking updates from $stream stream from : $data" echo "Looking for $artifact $arch release" data=$(curl --no-progress-meter $data | jq .architectures.$arch.artifacts.$artifact) @@ -75,6 +75,7 @@ then curl -C - --no-progress-meter --parallel \ -o $filename $(jq -n "$fileinfo" | jq --raw-output .location) \ -o $filename.sig $(jq -n "$fileinfo" | jq --raw-output .signature) #Downloading fileinfo.location and .signature + echo "Check sha256sum and GPG signature" if echo "$(jq -n "$fileinfo" | jq --raw-output .sha256) $filename" | sha256sum --check && gpg --verify $filename.sig then break