lower minimum apks

This commit is contained in:
jmir1
2022-08-06 23:28:54 +02:00
parent e926825eb9
commit d480d6b3df
2 changed files with 2 additions and 2 deletions

View File

@ -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;