From cc13f076d28f822fc9da2143d7ad30166c9e962d Mon Sep 17 00:00:00 2001 From: Joshua Blum Date: Thu, 19 Feb 2026 12:09:03 +0100 Subject: [PATCH] Fix command when running as `artisan statamic:starter-kit:install` --- src/StarterKits/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StarterKits/Installer.php b/src/StarterKits/Installer.php index 02af8dd4fd1..707391760be 100644 --- a/src/StarterKits/Installer.php +++ b/src/StarterKits/Installer.php @@ -460,7 +460,7 @@ public function makeSuperUser(): self } if (confirm('Create a super user?', false)) { - $this->console->call('make:user', ['--super' => true]); + $this->console->call('statamic:make:user', ['--super' => true]); } return $this;