projects
/
drupal-init-tools.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Use "read -r" to get the verbatim input, suggested by shellcheck
[drupal-init-tools.git]
/
libexec
/
bootstrap.sh
diff --git
a/libexec/bootstrap.sh
b/libexec/bootstrap.sh
index
2381d29
..
1dee4f2
100755
(executable)
--- a/
libexec/bootstrap.sh
+++ b/
libexec/bootstrap.sh
@@
-75,7
+75,7
@@
declare -p WEB_SERVER_GROUP
if [ "x$MYSQL_ROOT_PASSWORD" = "x" ];
then
- read -s -p "MySQL root password: " MYSQL_ROOT_PASSWORD
+ read -
r -
s -p "MySQL root password: " MYSQL_ROOT_PASSWORD
echo
fi