Skip to content

Commit

Permalink
fix(cli): split input patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Feb 21, 2024
1 parent cb075d7 commit efe6285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const main = defineCommand({
time,
} = await automd({
dir: args.dir,
input: args.input,
input: args.input?.split(",").map((i) => i.trim()),
output: args.output,
watch: args.watch,
onWatch: (event) => {
Expand Down

0 comments on commit efe6285

Please sign in to comment.