We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4d1fb commit e1ac89aCopy full SHA for e1ac89a
packages/opencode/src/cli/cmd/run.ts
@@ -88,7 +88,7 @@ export const RunCommand = cmd({
88
})
89
},
90
handler: async (args) => {
91
- let message = args.message.join(" ")
+ let message = [...args.message, ...((args as any)["--"] || [])].join(" ")
92
93
const fileParts: any[] = []
94
if (args.file) {
packages/opencode/src/index.ts
@@ -39,6 +39,7 @@ process.on("uncaughtException", (e) => {
39
40
41
const cli = yargs(hideBin(process.argv))
42
+ .parserConfiguration({ "populate--": true })
43
.scriptName("opencode")
44
.help("help", "show help")
45
.alias("help", "h")
0 commit comments