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;