Skip to content

Commit

Permalink
fix: files glob
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Jun 18, 2022
1 parent 9d7abb2 commit 9a6ced7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/parse-args.ts
Expand Up @@ -53,7 +53,7 @@ export function parseArgs(): ParsedArgs {
all: args.all,
confirm: !args.yes,
noVerify: !args.verify,
files: args['--'],
files: [...args['--'] || [], ...result.args],
ignoreScripts: args.ignoreScripts,
execute: args.execute,
},
Expand Down

0 comments on commit 9a6ced7

Please sign in to comment.