We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1620981 commit cdb8e9dCopy full SHA for cdb8e9d
tools/release/releaseScript.sh
@@ -343,7 +343,11 @@ read -p "Does it look correct? Press enter when it's done."
343
printf "\n================================================================================\n"
344
read -p "Installing apk on a real device, press enter when a real device is connected. "
345
apkPath="${targetPath}/vector-gplay-arm64-v8a-release-signed.apk"
346
+# Ignore error
347
+set +e
348
adb -d install ${apkPath}
349
+# Do not ignore error
350
+set -e
351
352
read -p "Please run the APK on your phone to check that the upgrade went well (no init sync, etc.). Press enter when it's done."
353
0 commit comments