Apply PR #11280: fix(cli): disable yargs wrapping to fix logo display

This commit is contained in:
opencode-agent[bot]
2026-02-01 14:06:47 +00:00

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)