Skip to content

Commit ec59f47

Browse files
committed
fix: yargs usage
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
1 parent 752dede commit ec59f47

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async function run(): Promise<void> {
2929
}
3030

3131
let yamlfile: string | unknown;
32-
const argv: Arguments<{config?: string}> = yargs(inputs.args.split(' ')).parseSync() as Arguments<{
32+
const argv: Arguments<{config?: string}> = yargs(inputs.args).parseSync() as Arguments<{
3333
config?: string;
3434
}>;
3535
if (argv.config) {

0 commit comments

Comments
 (0)