diff options
| author | Fuwn <[email protected]> | 2026-01-26 09:47:11 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-26 09:47:11 +0000 |
| commit | fe7f87b30173973c7fd54a9e2a9c4ebe4db1a7f4 (patch) | |
| tree | 76da4bb6c0398bd92b9459469363b4d1977699b0 /cmd | |
| parent | feat: Add force push flag (diff) | |
| download | mugi-fe7f87b30173973c7fd54a9e2a9c4ebe4db1a7f4.tar.xz mugi-fe7f87b30173973c7fd54a9e2a9c4ebe4db1a7f4.zip | |
feat: Add linear mode for sequential operations
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/mugi/main.go | 2 |
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) } |