Use read with the -r option

This commit is contained in:
Kamil Śliwak
2021-03-04 16:53:05 +01:00
parent d14c4288ec
commit 2784135c37
+1 -1
View File
@@ -91,7 +91,7 @@ function ask_expectation_update
while true
do
read -N 1 -p "(e)dit/(u)pdate expectations/(s)kip/(q)uit? "
read -r -N 1 -p "(e)dit/(u)pdate expectations/(s)kip/(q)uit? "
echo
case $REPLY in
e*) "$editor" "$expectationFile"; break;;