diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2016-08-04 12:45:36 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2016-08-04 12:45:36 +0000 |
commit | 0dc12c5972ec072a5e91b93fd38f0ec683852569 (patch) | |
tree | f50f5055e7c6bc509585e2a08afc5cad7adb5b1a | |
parent | 753216b55301c3b50cf8532af295dd8f2c5e6378 (diff) | |
download | midipix_build-0dc12c5972ec072a5e91b93fd38f0ec683852569.tar.bz2 midipix_build-0dc12c5972ec072a5e91b93fd38f0ec683852569.tar.xz |
Don't use ${__} in midipix.sh.
-rwxr-xr-x | midipix.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |