From f8a665cd826bc061d163f3d40d22292bc708cb94 Mon Sep 17 00:00:00 2001 From: Hu Keping Date: Wed, 4 Nov 2015 10:46:10 +0800 Subject: [PATCH] Replace tab with space on script It may inconsistent on different hosts(8/4 spaces per tab). Signed-off-by: Hu Keping --- notarymysql/start | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notarymysql/start b/notarymysql/start index 2c5ae3b62e..beddcd0631 100755 --- a/notarymysql/start +++ b/notarymysql/start @@ -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