Compare commits

...

3 Commits

Author SHA1 Message Date
316bcd5a68 Merge branch 'prompt-cleanup' of ssh://git.autonomic.zone:2222/coop-cloud/abra into prompt-cleanup
Some checks failed
continuous-integration/drone/pr Build is failing
2021-05-12 15:39:26 +01:00
1a4cf9be17 refactor: changed misc prompts to convention
Missed issue beore since I only changed the function, not these strays
Contiunation of PR #162
2021-05-12 15:37:42 +01:00
eadb353c2e refactor: changed misc prompts to convention
Some checks failed
continuous-integration/drone/pr Build is failing
Missed issue beore since I only changed the function, not these strays
Contiunation of PR #162
2021-05-11 14:40:02 +01:00

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