From 7f5dcb1ad84468fabe3bf2433d51bd45ebe4baf6 Mon Sep 17 00:00:00 2001 From: jmir1 Date: Thu, 22 Apr 2021 22:56:49 +0200 Subject: [PATCH] let me sign 1 apk pls (for real) --- .github/scripts/sign-apks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/sign-apks.sh b/.github/scripts/sign-apks.sh index 625b7aacf..cae462826 100755 --- a/.github/scripts/sign-apks.sh +++ b/.github/scripts/sign-apks.sh @@ -7,7 +7,7 @@ shopt -s globstar nullglob extglob APKS=( **/*".apk" ) # Fail if too little extensions seem to have been built -if [ "${#APKS[@]}" -le "2" ]; then +if [ "${#APKS[@]}" < "1" ]; then echo "Insufficient amount of APKs found. Please check the project configuration." exit 1; fi;