From e428feea79cecb32c295d9942c1e8b4e8862fea5 Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Mon, 9 Feb 2026 09:57:45 -0600 Subject: [PATCH] Fix unbound var --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index f8cd020..b87a458 100755 --- a/scripts/install +++ b/scripts/install @@ -57,7 +57,7 @@ ynh_script_progression "Building the application..." pushd "$install_dir" # Run the database migrations and initially fill the db php$php_version artisan migrate:fresh --seed --no-interaction --verbose --force - php$php_version artisan ninja:create-account --email $mail_address --password "$password" --no-interaction --verbose + php$php_version artisan ninja:create-account --email $default_from_email_address --password "$password" --no-interaction --verbose php$php_version artisan optimize --no-interaction --verbose php$php_version artisan view:clear php$php_version artisan cache:clear