Skip to content
This repository was archived by the owner on Apr 19, 2026. It is now read-only.

Commit 0b83285

Browse files
jpleva91claude
andcommitted
fix: --yolo is a root flag, must come before run subcommand
crush --yolo run --quiet "prompt" (not crush run --yolo) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0b98815 commit 0b83285

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/shellforge/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"github.com/AgentGuardHQ/shellforge/internal/scheduler"
2020
)
2121

22-
var version = "0.4.3"
22+
var version = "0.4.4"
2323

2424
func main() {
2525
if len(os.Args) < 2 {
@@ -494,7 +494,7 @@ var drivers = map[string]driverConfig{
494494
},
495495
"crush": {
496496
binary: "crush",
497-
buildCmd: func(p string) []string { return []string{"run", "--yolo", "--quiet", p} },
497+
buildCmd: func(p string) []string { return []string{"--yolo", "run", "--quiet", p} },
498498
interactive: []string{},
499499
hasHooks: true,
500500
initHint: "",

0 commit comments

Comments
 (0)