From 07a51cb352f8dbe2098012474190f2d645e70daa Mon Sep 17 00:00:00 2001 From: zachmann Date: Thu, 29 Aug 2024 10:14:37 +0200 Subject: [PATCH] fix update script --- updateToRelease.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updateToRelease.sh b/updateToRelease.sh index 7dd00b2..690f522 100755 --- a/updateToRelease.sh +++ b/updateToRelease.sh @@ -11,7 +11,7 @@ formula=$2 git checkout -b "${version}" -tar_url=$(echo "https://github.com/indigo-dc/oidc-agent/archive/refs/tags/VTAG.tar.gz" | sed \"s/VTAG/"${tag}"/g\") +tar_url=$(echo "https://github.com/indigo-dc/oidc-agent/archive/refs/tags/VTAG.tar.gz" | sed s/VTAG/"${tag}"/g) wget "${tar_url}" -O /tmp/prerel.tar.gz -q sha256_output=$(sha256sum /tmp/prerel.tar.gz) sha256=$(printf "%s" "${sha256_output}" | awk '{print $1}')