Revert #419 (email and password escaping)

This commit is contained in:
Michalek
2022-01-13 23:30:36 +01:00
parent 85519a0038
commit 64fdd58ba9

View File

@@ -3,13 +3,12 @@
php artisan db:seed --force
# Build up array of arguments...
# We escape the env variables in order to allow special characters
if [[ ! -z "${IN_USER_EMAIL}" ]]; then
email="--email \"${IN_USER_EMAIL}\""
email="--email ${IN_USER_EMAIL}"
fi
if [[ ! -z "${IN_PASSWORD}" ]]; then
password="--password \"${IN_PASSWORD}\""
password="--password ${IN_PASSWORD}"
fi
php artisan ninja:create-account $email $password