From 7eb3aaad97b5d48bffeff6228f0b46d0df6e0584 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Tue, 27 Aug 2024 22:25:44 +0200 Subject: [PATCH] Update updater_ffmpeg-static.sh --- .github/workflows/updater_ffmpeg-static.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/updater_ffmpeg-static.sh b/.github/workflows/updater_ffmpeg-static.sh index 169a2a4..f8637fb 100644 --- a/.github/workflows/updater_ffmpeg-static.sh +++ b/.github/workflows/updater_ffmpeg-static.sh @@ -23,7 +23,7 @@ arm64_sha_last=$(curl --silent "$arm64_url" | sha256sum) echo "PROCEED=false" >> $GITHUB_ENV # Proceed only if the retrieved version is greater than the current one -if [ "$amd64_sha_current" == "$amd64_sha_last" ] && [ "$arm64_sha_current" == "$amd64_sha_last" ] +if [ "$amd64_sha_current" == "$amd64_sha_last" ] && [ "$arm64_sha_current" == "$arm64_sha_last" ] then echo "::warning ::No new version available" exit 0