diff --git a/.github/scripts/move-apks.sh b/.github/scripts/move-apks.sh old mode 100644 new mode 100755 index ba0d3cf3e..6ec1b9034 --- a/.github/scripts/move-apks.sh +++ b/.github/scripts/move-apks.sh @@ -7,7 +7,7 @@ cp -R ~/apk-artifacts/ $PWD APKS=( **/*".apk" ) # Fail if too little extensions seem to have been built -if [ "${#APKS[@]}" -le "100" ]; then +if [ "${#APKS[@]}" -le "50" ]; then echo "Insufficient amount of APKs found. Please check the project configuration." exit 1 else diff --git a/.github/scripts/sign-apks.sh b/.github/scripts/sign-apks.sh index cae462826..fa7a0ae7d 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[@]}" < "1" ]; then +if [ "${#APKS[@]}" -le "50" ]; then echo "Insufficient amount of APKs found. Please check the project configuration." exit 1; fi;