fix(cli): disable yargs wrapping to prevent logo distortion

This commit is contained in:
Ravi Kumar
2026-01-30 13:05:30 +05:30
parent 00637c0269
commit daa90322d9

View File

@@ -42,7 +42,7 @@ process.on("uncaughtException", (e) => {
const cli = yargs(hideBin(process.argv))
.parserConfiguration({ "populate--": true })
.scriptName("opencode")
.wrap(100)
.wrap(null)
.help("help", "show help")
.alias("help", "h")
.version("version", "show version number", Installation.VERSION)