diff --git a/makefile b/makefile index 62f2aea42c830f837fca3d2e3e48558e533171ff..9bdd723a09c8f94aca025938fc59d4ac7d2a6d32 100644 --- a/makefile +++ b/makefile @@ -57,7 +57,6 @@ _grant: printf "\nPlease repeat the password for $(DATABASE_USER): "; read -s password2; \ if [ "$$password" != "$$password2" ]; then printf "\n\nThe passwords didn't match. Try again." ; else break ; fi; \ done ; \ - printf "\n$$password\n" ; \ for host in $(subst $(comma), ,$(DATABASE_USER_HOST_LIST)); do \ $(MYSQL_CMD) $(MYSQL_CONNECTION) -e "CREATE USER '$(DATABASE_USER)'@'$$host' identified by '$$password';"; \ $(MYSQL_CMD) $(MYSQL_CONNECTION) -e "GRANT USAGE ON *.* TO '$(DATABASE_USER)'@'$$host';"; \