Skip to content

Commit a1e37f9

Browse files
authored
refactor: use process.cwd() for default input path (#138)
1 parent 10e8058 commit a1e37f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const cli = await y
4343
.option('input', {
4444
alias: 'i',
4545
describe: 'Paths you would like to extract strings from. You can use path expansion, glob patterns and multiple paths',
46-
default: [process.env.PWD],
46+
default: [process.cwd()],
4747
type: 'array',
4848
normalize: true,
4949
demandOption: true

0 commit comments

Comments
 (0)