Skip to content

Commit

Permalink
Pint: fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored and github-actions[bot] committed Jan 30, 2025
1 parent 0668d74 commit ced69d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/InstallsInertiaStacks.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand Down

0 comments on commit ced69d4

Please sign in to comment.