From 3f1164cee60fa9ee7130866b77233dc7b8eeb634 Mon Sep 17 00:00:00 2001 From: Michael Nguyen Date: Sat, 23 Dec 2017 15:43:57 -0800 Subject: [PATCH] Fix error with password field --- services/php/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/php/install.sh b/services/php/install.sh index fc7f725..28fbfd0 100755 --- a/services/php/install.sh +++ b/services/php/install.sh @@ -27,7 +27,7 @@ if [ ! -f .env ]; then esac php artisan migrate --force php artisan db:seed --force - php artisan pterodactyl:user --email="$admin_email" --password="$admin_pass " \ + php artisan pterodactyl:user --email="$admin_email" --password="$admin_pass" \ --admin=1 --firstname="$admin_first" --lastname="$admin_last" --username="$admin_username" echo "Setup complete." else