From ced69d45336777e815f2ac4ba8fc9b20a6bbd2d2 Mon Sep 17 00:00:00 2001 From: taylorotwell <463230+taylorotwell@users.noreply.github.com> Date: Thu, 30 Jan 2025 09:06:05 +0000 Subject: [PATCH] Pint: fix code styling --- src/Console/InstallsInertiaStacks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/InstallsInertiaStacks.php b/src/Console/InstallsInertiaStacks.php index 5040711e..0b2fd8b0 100644 --- a/src/Console/InstallsInertiaStacks.php +++ b/src/Console/InstallsInertiaStacks.php @@ -401,7 +401,7 @@ protected function installInertiaReactStack() $this->runCommands(['pnpm install', 'pnpm run build']); } elseif (file_exists(base_path('yarn.lock'))) { $this->runCommands(['yarn install', 'yarn run build']); - } elseif (file_exists(base_path('bun.lockb')) || file_exists(base_path('bun.lock'))) { + } elseif (file_exists(base_path('bun.lockb')) || file_exists(base_path('bun.lock'))) { $this->runCommands(['bun install', 'bun run build']); } elseif (file_exists(base_path('deno.lock'))) { $this->runCommands(['deno install', 'deno task build']);