Skip to content

Commit dfbe4e4

Browse files
alexeicolingalak
authored andcommitted
scripts/template_dir: remove 'continue' from prompt
To clarify that choosing 'no' does not imply aborting the whole installation.
1 parent 953f91f commit dfbe4e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/template_dir

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ do_zephyrrc()
144144
echo " export ZEPHYR_SDK_INSTALL_DIR=$target_sdk_dir"
145145
echo
146146
if [ -z "$rc_confirm" ]; then
147-
prompt "creating/updating $HOME/.zephyrrc with environment variables setup for you "
147+
prompt "create/update $HOME/.zephyrrc with environment variables setup for you "
148148
rc_confirm=$answer
149149
fi
150150
if [ "$rc_confirm" = "y" ]; then
@@ -172,7 +172,7 @@ do_cmake_package()
172172
fi
173173

174174
if [ -z "$cmake_confirm" ]; then
175-
prompt "registering Zephyr-sdk CMake module with path $target_sdk_dir "
175+
prompt "register Zephyr-sdk CMake module with path $target_sdk_dir "
176176
cmake_confirm=$answer
177177
fi
178178
if [ "$cmake_confirm" = "y" ]; then
@@ -188,7 +188,7 @@ do_cmake_package()
188188
# Read the input "y"
189189
# $1 is optional, but allows the caller to provide additional text.
190190
prompt () {
191-
echo "Do you want to continue $1(y/n)? "
191+
echo "Do you want to $1(y/n)? "
192192
while read answer; do
193193
if [ "$answer" = "Y" -o "$answer" = "y" ]; then
194194
answer="y"

0 commit comments

Comments
 (0)