From de6c8af19dcad3f5c17006501fd9d05290273f41 Mon Sep 17 00:00:00 2001 From: shockrah Date: Wed, 29 Jul 2020 00:35:34 -0700 Subject: [PATCH] localhost was literall mispelled --- server/scripts/setup-dev-user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/scripts/setup-dev-user.sh b/server/scripts/setup-dev-user.sh index 0a7c18b..c3d9b5e 100644 --- a/server/scripts/setup-dev-user.sh +++ b/server/scripts/setup-dev-user.sh @@ -2,7 +2,7 @@ # Running the mysql -u root -p \ - "CREATE USER 'freechat_dev'@'locahost' IDENTIFIED BY 'password';" + "create user 'freechat_dev'@'localhost' identified by 'password';" mysql -u root -p \ "GRANT ALL PRIVILEGES ON freechat.* TO 'freechat_dev'@'localhost';"