Fastfile: Fix checkIfAPKexists, as there's 3 APKs now

Signed-off-by: Álvaro Brey Vilas <alvaro.brey@nextcloud.com>
This commit is contained in:
Álvaro Brey Vilas 2021-12-15 15:21:39 +01:00
parent 508c193dfa
commit e1cfb960ed
No known key found for this signature in database
GPG key ID: 2585783189A62105

View file

@ -173,7 +173,7 @@ private_lane :createChangelogPullRequest_Final do |options|
end
private_lane :checkIfAPKexists do |options|
sh("if [ $(/bin/ls -1 ../release | wc -l) -ne 2 ]; then echo 'APKs do not exist ../release/; aborting!' ; exit 1 ;
sh("if [ $(/bin/ls -1 ../release | wc -l) -ne 3 ]; then echo 'APKs do not exist ../release/; aborting!' ; exit 1 ;
fi")
end