Skip to content

Commit 43d9ee1

Browse files
committed
PR Fixes
1 parent 76c2461 commit 43d9ee1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

sources/__init.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function __init {
66

77
if [ -e "./.deploy-options.sh" ]; then
88
echo "Options file already exists."
9-
echo "If you continue, stored options will be overriden!"
9+
echo "If you continue, stored options will be overridden!"
1010
echo
1111
read -r -p "Do you want to proceed? [y/n] " c
1212
if ! [[ ${c} =~ ^(yes|y|Y) ]] || [ -z ${c} ]; then

sources/deploy-options.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ function deploy_options {
6666
echo
6767
echo "[3] App/Play Store"
6868
echo
69-
read -r -p "Enter number in square brackets: " target_selection
69+
echo "Enter number written in the square brackets."
70+
echo "To run multiple targets, write multiple numbers separated by empty space (e.g. Enter targets: 0 3)"
71+
read -r -p "Enter targets: " target_selection
7072

7173
# Array for creating first part of the tag.
7274
# Should be in sync with options shown to the user.

0 commit comments

Comments
 (0)