Explorar el Código

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

Signed-off-by: Álvaro Brey Vilas <alvaro.brey@nextcloud.com>
Álvaro Brey Vilas hace 3 años
padre
commit
e1cfb960ed
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      fastlane/Fastfile

+ 1 - 1
fastlane/Fastfile

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