aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--commands/mod.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/mod.go b/commands/mod.go
index 55b8a8e08..764e12d41 100644
--- a/commands/mod.go
+++ b/commands/mod.go
@@ -224,7 +224,7 @@ Run "go help get" for more information. All flags available for "go get" is also
run: func(ctx context.Context, cd *simplecobra.Commandeer, r *rootCommand, args []string) error {
// We currently just pass on the flags we get to Go and
// need to do the flag handling manually.
- if len(args) == 1 && args[0] == "-h" || args[0] == "--help" {
+ if len(args) == 1 && (args[0] == "-h" || args[0] == "--help") {
return errHelp
}