summaryrefslogtreecommitdiffhomepage
path: root/midipix.sh
diff options
context:
space:
mode:
Diffstat (limited to 'midipix.sh')
-rwxr-xr-xmidipix.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/midipix.sh b/midipix.sh
index 887ded23..f40f2c53 100755
--- a/midipix.sh
+++ b/midipix.sh
@@ -18,8 +18,8 @@ convert_links_ask() {
echo "extracted by an application that does not support symbolic links"
echo "correctly. This also occurs when a binary distribution was built locally."
printf "Convert all shared object symbolic links to hard links? (y|N) ";
- read _;
- case "${_}" in
+ read __;
+ case "${__}" in
[yY]) break; ;;
*) echo "Exiting."; exit 6; ;;
esac;