Skip to content

Commit f4e2e26

Browse files
committed
Fixes #476 - Fix casing on cli argument
1 parent b1708e3 commit f4e2e26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const jsrepolocation: string[] = (prg.jsrepo ?? "'central'")
7676
: x,
7777
);
7878

79-
const ignorefile = prg.ignoreFile ?? defaultIgnoreFiles.filter((x) => fs.existsSync(x))[0];
79+
const ignorefile = prg.ignorefile ?? defaultIgnoreFiles.filter((x) => fs.existsSync(x))[0];
8080

8181
const scanpath = prg.path ?? prg.jspath ?? '.';
8282

0 commit comments

Comments
 (0)