Replace tab with space on script

It may inconsistent on different hosts(8/4 spaces per tab).

Signed-off-by: Hu Keping <hukeping@huawei.com>
This commit is contained in:
Hu Keping 2015-11-04 10:46:10 +08:00
parent 0b3377a86c
commit f8a665cd82
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ if [ -n "${DB_USER}" -o -n "${DB_NAME}" ]; then
-e "GRANT ALL PRIVILEGES ON \`$db\`.* TO '${DB_USER}' IDENTIFIED BY '${DB_PASS}';"
fi
# Create our Database:
mysql -uroot $db < ./initial.sql
mysql -uroot $db < ./initial.sql
mysql -uroot $db < ./migrate.sql
done
fi