Skip to content

Commit

Permalink
change seperator
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschubek committed Mar 16, 2023
1 parent 9ea7db7 commit d87e1b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ process.emit = function (name, data: any, ...args) {
stop(1);
}

const files = await glob((argv.file ?? []).split(","), { absolute: false, nodir: true, dot: true, ignore: (argv.ignore ?? []).split(",") });
const files = await glob((argv.file ?? []).split(";"), { absolute: false, nodir: true, dot: true, ignore: (argv.ignore ?? []).split(";") });

// check if there are any files
if (files.length === 0) {
Expand Down

0 comments on commit d87e1b2

Please sign in to comment.