From 32692638e0cf7268f889a41258924749fbe82a69 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 17 Mar 2019 14:17:10 +0100 Subject: [PATCH] Fix password --- Inspection/inspect.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Inspection/inspect.sh b/Inspection/inspect.sh index 5c699e2..bdceb3b 100755 --- a/Inspection/inspect.sh +++ b/Inspection/inspect.sh @@ -4,8 +4,8 @@ . config.sh # Setting up database for demo and testing -mysql -e 'drop database if exists oms;' -u ${DB_USER} -p${DB_PASSWORD} -mysql -e 'create database oms;' -u ${DB_USER} -p${DB_PASSWORD} +mysql -e 'drop database if exists oms;' -u ${DB_USER} --password="${DB_PASSWORD}" +mysql -e 'create database oms;' -u ${DB_USER} --password="${DB_PASSWORD}" # Build js #. Js/build.sh