From 04817b751472c7ec4fa546eb833fb9f9a265be4b Mon Sep 17 00:00:00 2001 From: Jess Archer Date: Wed, 7 Sep 2022 17:07:06 +1000 Subject: [PATCH] Remove `storage:link` command This has been moved to the Jetstream install command instead. --- src/NewCommand.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/NewCommand.php b/src/NewCommand.php index 308ffb9e..908e9439 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -177,7 +177,6 @@ protected function installJetstream(string $directory, string $stack, bool $team $commands = array_filter([ $this->findComposer().' require laravel/jetstream', trim(sprintf(PHP_BINARY.' artisan jetstream:install %s %s', $stack, $teams ? '--teams' : '')), - PHP_BINARY.' artisan storage:link', ]); $this->runCommands($commands, $input, $output);