Skip to content

Commit 0ff09e2

Browse files
committed
Fix cdxgen typo in filtering help flags
1 parent ff1a727 commit 0ff09e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/cdxgen/cmd-cdxgen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ async function run(
144144
const cli = meowOrExit({
145145
allowUnknownFlags: true,
146146
// Don't let meow take over --help.
147-
argv: argv.filter(isHelpFlag),
147+
argv: argv.filter(a => !isHelpFlag(a)),
148148
config,
149149
importMeta,
150150
parentName

0 commit comments

Comments
 (0)