From 4cb061c0219ed8cdb11d979ffc26882f6c6decea Mon Sep 17 00:00:00 2001 From: Boudewijn Date: Sun, 2 Mar 2025 22:29:38 +0100 Subject: [PATCH] 'name' is a reserved keyword, replace it by 'user' in manifest and install --- manifest.toml | 2 +- scripts/install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.toml b/manifest.toml index 6c277fa..f1d89dd 100644 --- a/manifest.toml +++ b/manifest.toml @@ -46,7 +46,7 @@ ram.runtime = "100M" default = "all_users" # for now no credentials configured, make it install first - [install.name] + [install.user] help.en = "The name of the user" type = "text" [install.email] diff --git a/scripts/install b/scripts/install index 4b3333f..1b9a9c1 100755 --- a/scripts/install +++ b/scripts/install @@ -100,7 +100,7 @@ pushd "$install_dir" "php$php_version" artisan migrate:fresh --seed -n --force "php$php_version" artisan config:clear -n "php$php_version" artisan config:cache -n - "php$php_version" artisan app:create-user "$name" "$email" "$password" + "php$php_version" artisan app:create-user "$user" "$email" "$password" popd