aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-01-26 09:47:11 +0000
committerFuwn <[email protected]>2026-01-26 09:47:11 +0000
commitfe7f87b30173973c7fd54a9e2a9c4ebe4db1a7f4 (patch)
tree76da4bb6c0398bd92b9459469363b4d1977699b0 /cmd
parentfeat: Add force push flag (diff)
downloadmugi-fe7f87b30173973c7fd54a9e2a9c4ebe4db1a7f4.tar.xz
mugi-fe7f87b30173973c7fd54a9e2a9c4ebe4db1a7f4.zip
feat: Add linear mode for sequential operations
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mugi/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mugi/main.go b/cmd/mugi/main.go
index f1af065..76f1c18 100644
--- a/cmd/mugi/main.go
+++ b/cmd/mugi/main.go
@@ -46,5 +46,5 @@ func run() error {
return fmt.Errorf("no matching repositories or remotes found")
}
- return ui.Run(cmd.Operation, tasks, cmd.Verbose, cmd.Force)
+ return ui.Run(cmd.Operation, tasks, cmd.Verbose, cmd.Force, cmd.Linear)
}