Skip to content

Commit 4019971

Browse files
committed
fix: -i flag not passed through to madwizard
1 parent 84b033c commit 4019971

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

plugins/plugin-madwizard/src/plugin.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,13 @@ function withFilepath(
5858
}
5959

6060
await cli(
61-
["madwizard", task, ...argvNoOptions.slice(1), ...(parsedOptions.n ? ["--no-profile"] : [])],
61+
[
62+
"madwizard",
63+
task,
64+
...argvNoOptions.slice(1),
65+
...(parsedOptions.n ? ["--no-profile"] : []),
66+
...(parsedOptions.i ? ["-i"] : []),
67+
],
6268
undefined,
6369
{ store: process.env.GUIDEBOOK_STORE, verbose: parsedOptions.V }
6470
)

0 commit comments

Comments
 (0)