From f404f15084be27faa6384e16a9eb8441911e6727 Mon Sep 17 00:00:00 2001 From: William Bezuidenhout Date: Wed, 15 Apr 2026 11:28:44 +0200 Subject: [PATCH] remove pointless condition due to os.Exit --- cmd/src/main.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmd/src/main.go b/cmd/src/main.go index 1bc131c0eb..8499d6465f 100644 --- a/cmd/src/main.go +++ b/cmd/src/main.go @@ -102,9 +102,7 @@ func main() { } // if we didn't run a migrated command, then lets try running the legacy version - if !ranMigratedCmd { - commands.run(flag.CommandLine, "src", usageText, normalizeDashHelp(os.Args[1:])) - } + commands.run(flag.CommandLine, "src", usageText, normalizeDashHelp(os.Args[1:])) } // normalizeDashHelp converts --help to -help since Go's flag parser only supports single dash.