Skip to content

Commit 2dddb8f

Browse files
committed
Fix argument parsing not finding args
1 parent 4049e1b commit 2dddb8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/streamwall/src/main/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ function parseArgs(): StreamwallConfig {
238238
})
239239
.help()
240240
// https://github.com/yargs/yargs/issues/2137
241-
.parseSync() as unknown as StreamwallConfig
241+
.parseSync(process.argv) as unknown as StreamwallConfig
242242
)
243243
}
244244

0 commit comments

Comments
 (0)