feat: switches to conventional confirmation prompt #162

Merged
decentral1se merged 1 commits from roxxers/abra:prompt into main 2021-05-10 08:26:09 +00:00
1 changed files with 1 additions and 1 deletions

2
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 ;;