Skip to content

Commit 8d81b36

Browse files
committed
Change default value of doBuildApks to "no"
1 parent 5b06680 commit 8d81b36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/release/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ printf "\n======================================================================
325325
printf "The file ${signedBundlePath} has been signed and can be uploaded to the PlayStore!\n"
326326

327327
printf "\n================================================================================\n"
328-
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
329-
doBuildApks=${doBuildApks:-yes}
328+
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
329+
doBuildApks=${doBuildApks:-no}
330330

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

0 commit comments

Comments
 (0)