refactor: changed misc prompts to convention #163

Merged
roxxers merged 3 commits from prompt-cleanup into main 2021-05-12 14:40:17 +00:00
1 changed files with 2 additions and 2 deletions

4
abra
View File

@ -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