From 2055aaffa36521330e6b6f4bb1fd4d314c13b766 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Tue, 27 Aug 2024 22:17:56 +0200 Subject: [PATCH] Update updater_ffmpeg-static.sh --- .github/workflows/updater_ffmpeg-static.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/updater_ffmpeg-static.sh b/.github/workflows/updater_ffmpeg-static.sh index 3629c36..faab63e 100644 --- a/.github/workflows/updater_ffmpeg-static.sh +++ b/.github/workflows/updater_ffmpeg-static.sh @@ -23,8 +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" == "$arm64_sha_last" ] -if true +if [ "$amd64_sha_current" == "$amd64_sha_last" ] && [ "$arm64_sha_current" == "$amd64_sha_last" ] then echo "::warning ::No new version available" exit 0