From 41e6e0e1773f3df8502746e3fbbc4f8f9d81f86a Mon Sep 17 00:00:00 2001 From: mh4ckt3mh4ckt1c4s Date: Thu, 2 Mar 2023 23:46:30 +0100 Subject: [PATCH] Fix error in updater.sh --- .github/workflows/updater.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/updater.sh b/.github/workflows/updater.sh index c939a84..b33b480 100755 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -49,7 +49,7 @@ tempdir="$(mktemp -d)" # Download sources and calculate checksum curl --silent -4 -L $asset_url -o "$tempdir/master.zip" -checksum=$(sha256sum "$tempdir/$filename" | head -c 64) +checksum=$(sha256sum "$tempdir/master.zip" | head -c 64) # Delete temporary directory rm -rf $tempdir