commands: Fix faulty -h logic in hugo mod get
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 13 Aug 2019 09:17:19 +0000 (11:17 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 13 Aug 2019 09:17:19 +0000 (11:17 +0200)
Fixes #6197

commands/mod.go

index 861704e35b7c8a5badeded92fd856afb63c1318d..04442a9b22f65f72a6ca7187ec93f1c6d7e807fc 100644 (file)
@@ -15,7 +15,6 @@ package commands
 
 import (
        "os"
-       "strings"
 
        "github.com/gohugoio/hugo/modules"
        "github.com/spf13/cobra"
@@ -80,7 +79,7 @@ Run "go help get" for more information. All flags available for "go get" is also
                                return c.withModsClient(false, func(c *modules.Client) error {
                                        // We currently just pass on the flags we get to Go and
                                        // need to do the flag handling manually.
-                                       if len(args) == 1 && strings.Contains(args[0], "-h") {
+                                       if len(args) == 1 && args[0] == "-h" {
                                                return cmd.Help()
                                        }
                                        return c.Get(args...)