Removing extraneous space from the mysql command in the event the database

has a password.  mysql wants no space between the -p and the password.
This commit is contained in:
dave%intrec.com 2001-01-09 21:47:06 +00:00
Родитель dbd36fbbfb
Коммит 2766b34f94
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -25,7 +25,7 @@ PASSWORD=
if test x$PASSWORD = x ; then
MYSQL="mysql -u $USER"
else
MYSQL="mysql -u $USER -p $PASSWORD"
MYSQL="mysql -u $USER -p$PASSWORD"
fi
echo