Compare commits

...

1 Commits
main ... prompt

Author SHA1 Message Date
e8ac353453
feat: switches to conventional confirmation prompt 2021-05-08 21:45:52 +01:00

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