Skip to content

Commit

Permalink
Change default value of doBuildApks to "no"
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarty committed Oct 25, 2024
1 parent 5b06680 commit 8d81b36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/release/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ printf "\n======================================================================
printf "The file ${signedBundlePath} has been signed and can be uploaded to the PlayStore!\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
doBuildApks=${doBuildApks:-yes}
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:-no}

if [ "${doBuildApks}" == "yes" ]; then
printf "Building apks...\n"
Expand Down

0 comments on commit 8d81b36

Please sign in to comment.