Browse Source

Change default value of doBuildApks to "no"

pull/3741/head
Benoit Marty 5 days ago
parent
commit
8d81b364f5
  1. 4
      tools/release/release.sh

4
tools/release/release.sh

@ -325,8 +325,8 @@ printf "\n======================================================================
printf "The file ${signedBundlePath} has been signed and can be uploaded to the PlayStore!\n" printf "The file ${signedBundlePath} has been signed and can be uploaded to the PlayStore!\n"
printf "\n================================================================================\n" printf "\n================================================================================\n"
read -p "Do you want to build the APKs from the app bundle? You need to do this step if you want to install the application to your device. (yes/no) default to yes " doBuildApks read -p "Do you want to build the APKs from the app bundle? You need to do this step if you want to install the application to your device. (yes/no) default to no " doBuildApks
doBuildApks=${doBuildApks:-yes} doBuildApks=${doBuildApks:-no}
if [ "${doBuildApks}" == "yes" ]; then if [ "${doBuildApks}" == "yes" ]; then
printf "Building apks...\n" printf "Building apks...\n"

Loading…
Cancel
Save