Fix argument parsing not finding args

This commit is contained in:
Max Goodhart
2025-06-22 23:56:56 -07:00
parent 4049e1bf78
commit 2dddb8f8e8

View File

@@ -238,7 +238,7 @@ function parseArgs(): StreamwallConfig {
})
.help()
// https://github.com/yargs/yargs/issues/2137
.parseSync() as unknown as StreamwallConfig
.parseSync(process.argv) as unknown as StreamwallConfig
)
}