feat: switches to conventional confirmation prompt

This commit is contained in:
Roxie Gibson 2021-05-08 21:45:52 +01:00
parent 552abdd980
commit e8ac353453
Signed by: roxxers
GPG Key ID: 5D0140EDEE123F4D
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 ;;