From d480d6b3dfc9353633ac91d3d289d7b74eacc81e Mon Sep 17 00:00:00 2001 From: jmir1 Date: Sat, 6 Aug 2022 23:28:54 +0200 Subject: [PATCH] lower minimum apks --- .github/scripts/move-apks.sh | 2 +- .github/scripts/sign-apks.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 .github/scripts/move-apks.sh 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;