Skip to content

Commit

Permalink
Merge pull request #28226 from storybookjs/shilman/27096-fix-init-ski…
Browse files Browse the repository at this point in the history
…p-install

CLI: Fix `init --skip-install`
(cherry picked from commit 3385570)
  • Loading branch information
shilman committed Jun 13, 2024
1 parent 8f4c356 commit 20fc7d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/lib/cli/src/initiate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ export async function doInitiate(options: CommandOptions): Promise<
);

return {
shouldRunDev: !!options.dev,
shouldRunDev: !!options.dev && !options.skipInstall,
projectType,
packageManager,
storybookCommand,
Expand Down

0 comments on commit 20fc7d3

Please sign in to comment.