add_linter #5

Merged
otthorn merged 8 commits from add_linter into master 2021-02-19 01:20:11 +01:00
Showing only changes of commit 9a33c847a0 - Show all commits

View file

@ -78,7 +78,7 @@ function arg_parse
function yes_or_no
{
read -p "$* [y/N]: " ans
read -pr "$* [y/N]: " ans
case "$ans" in
[yY] | [yY]es ) return 0;;
* ) echo "Aborting"; return 1;;