refactor: changed misc prompts to convention
continuous-integration/drone/pr Build is failing Details

Missed issue beore since I only changed the function, not these strays
Contiunation of PR #162
This commit is contained in:
Roxie Gibson 2021-05-11 14:40:02 +01:00
parent 552abdd980
commit eadb353c2e
Signed by: roxxers
GPG Key ID: 5D0140EDEE123F4D
1 changed files with 3 additions and 3 deletions

6
abra
View File

@ -899,7 +899,7 @@ prompt_confirm() {
return
fi
read -rp "Continue? (y/[n])? " choice
read -rp "Continue? [y/N]? " choice
case "$choice" in
y|Y ) return ;;
@ -2099,7 +2099,7 @@ sub_recipe_release() {
success "All compose files updated; new version is $new_version"
read -rp "Commit your changes to git? (y/[n])? " choice
read -rp "Commit your changes to git? [y/N]? " choice
if [ "${choice,,}" != "y" ]; then
return
@ -2107,7 +2107,7 @@ sub_recipe_release() {
git commit -avem "Version $new_version; sync labels" || exit
read -rp "Tag this as \`$new_version\`? (y/[n])? " choice
read -rp "Tag this as \`$new_version\`? [y/N]? " choice
if [ "${choice,,}" != "y" ]; then
return