Fixed a simple bug in the confirmation prompt

This commit is contained in:
Alex Clarke
2025-04-28 18:35:15 -06:00
committed by GitHub
parent 3b52deb010
commit 08f92d7d73
+1 -2
View File
@@ -103,11 +103,10 @@ confirm() {
echo -n 1 echo -n 1
break break
;; ;;
n | N) n | N | *)
echo -n 0 echo -n 0
break break
;; ;;
*) _cursor_to "${current_row}" ;;
esac esac
done done
echo -en "\033[0m" >&2 echo -en "\033[0m" >&2