From dbcd034180a42dd0a04ef05fae04fd6049a83097 Mon Sep 17 00:00:00 2001 From: Sebastian Gumprich Date: Mon, 21 Dec 2020 21:30:16 +0100 Subject: [PATCH] update artisan tasks in install to run non-interactive --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 70da6d3..43c5a44 100755 --- a/scripts/install +++ b/scripts/install @@ -150,8 +150,8 @@ ynh_script_progression --message="Building the application..." pushd "$final_path" # Run the database migrations and initially fill the db - php$phpversion artisan migrate --no-interaction --verbose --force - php$phpversion artisan db:seed --force --no-interaction --verbose + php$phpversion artisan optimize --no-interaction --verbose + php$phpversion artisan migrate:fresh --seed --no-interaction --verbose --force popd #=================================================