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

2
.github/scripts/move-apks.sh vendored Normal file → Executable file
View File

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

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;