From 29bd1d5c803ce76cfd2a4fe7fe99e482c704cfdc Mon Sep 17 00:00:00 2001 From: Kay0u Date: Fri, 16 Feb 2024 12:19:31 +0100 Subject: [PATCH] =?UTF-8?q?fix=C2=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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 ce37614..1faa8ff 100644 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -26,7 +26,7 @@ echo "VERSION=${go_version#go}" >> $GITHUB_ENV echo "PROCEED=false" >> $GITHUB_ENV # Proceed only if the retrieved version is greater than the current one -if ! dpkg --compare-versions "$current_version" "lt" "$go_version" ; then +if ! dpkg --compare-versions "$current_version" "lt" "${go_version#go}" ; then echo "::warning ::No new version available" exit 0 # Proceed only if a PR for this new version does not already exist