From 8847681c7115d0c9c8a9cda8ae89749d66fdc965 Mon Sep 17 00:00:00 2001 From: Josh Junon Date: Tue, 16 Apr 2024 17:03:25 +0200 Subject: [PATCH] add no-op in release script on windows --- scripts/release.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index 05585f7bc..a0a168b91 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -140,7 +140,8 @@ if [ "$DO_SIGN" = "true" ]; then export SIGN_KEY="$APPIMAGE_KEY_ID" export APPIMAGETOOL_SIGN_PASSPHRASE="$APPIMAGE_KEY_PASSPHRASE" elif [ "$OS" == "windows" ]; then - # Nothing extra to add. + # Nothing to do on windows + :; else error "signing is not supported on $(uname -s)" fi