modules: Fix "hugo mod get -u" with no arguments
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 30 Jan 2020 08:08:49 +0000 (09:08 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 30 Jan 2020 16:15:35 +0000 (17:15 +0100)
Fixes #6826
Closes #6825

commands/commandeer.go
commands/mod.go
hugolib/config.go
modules/client.go

index 761d799121cb628304bd49ded7acc37fcaaab8bb..8c8440a7a992fe2b0497fe9c55d4d45454205dbd 100644 (file)
@@ -20,8 +20,6 @@ import (
 
        "golang.org/x/sync/semaphore"
 
-       "github.com/gohugoio/hugo/modules"
-
        "io/ioutil"
 
        "github.com/gohugoio/hugo/common/herrors"
@@ -312,14 +310,8 @@ func (c *commandeer) loadConfig(mustHaveConfigFile, running bool) error {
                doWithCommandeer,
                doWithConfig)
 
-       if err != nil {
-               if mustHaveConfigFile {
-                       return err
-               }
-               if err != hugolib.ErrNoConfigFile && !modules.IsNotExist(err) {
-                       return err
-               }
-
+       if err != nil && mustHaveConfigFile {
+               return err
        } else if mustHaveConfigFile && len(configFiles) == 0 {
                return hugolib.ErrNoConfigFile
        }
index 5fbd93ecbd8b9991d632ddc4060841833ffcc765..0b3e193b9add60613c13593580483d86e4c3001f 100644 (file)
@@ -77,6 +77,7 @@ Run "go help get" for more information. All flags available for "go get" is also
 ` + commonUsage,
                        RunE: func(cmd *cobra.Command, args []string) error {
                                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 && args[0] == "-h" {
index e29d6ac9f92881e429bc26e1ecd8c4b527be2fc0..841bd5193a3e01dc9be44e501631b0efd5383c93 100644 (file)
@@ -225,15 +225,12 @@ func LoadConfig(d ConfigSourceDescriptor, doWithConfig ...func(cfg config.Provid
        }
 
        _, modulesConfigFiles, err := l.collectModules(modulesConfig, v, collectHook)
-       if err != nil {
-               return v, configFiles, err
-       }
 
-       if len(modulesConfigFiles) > 0 {
+       if err == nil && len(modulesConfigFiles) > 0 {
                configFiles = append(configFiles, modulesConfigFiles...)
        }
 
-       return v, configFiles, nil
+       return v, configFiles, err
 
 }
 
@@ -465,9 +462,6 @@ func (l configLoader) collectModules(modConfig modules.Config, v1 *viper.Viper,
        v1.Set("modulesClient", modulesClient)
 
        moduleConfig, err := modulesClient.Collect()
-       if err != nil {
-               return nil, nil, err
-       }
 
        // Avoid recreating these later.
        v1.Set("allModules", moduleConfig.ActiveModules)
@@ -478,7 +472,7 @@ func (l configLoader) collectModules(modConfig modules.Config, v1 *viper.Viper,
                configFilenames = append(configFilenames, moduleConfig.GoModulesFilename)
        }
 
-       return moduleConfig.ActiveModules, configFilenames, nil
+       return moduleConfig.ActiveModules, configFilenames, err
 
 }
 
index 462cd6017fd4af3dbe97fb369c9935e47bdbbe8a..1aacc5aa7be8033c0af39333f21672eab5174229 100644 (file)
@@ -259,6 +259,28 @@ func (c *Client) Vendor() error {
 
 // Get runs "go get" with the supplied arguments.
 func (c *Client) Get(args ...string) error {
+       if len(args) == 0 || (len(args) == 1 && args[0] == "-u") {
+               update := len(args) != 0
+
+               // We need to be explicit about the modules to get.
+               for _, m := range c.moduleConfig.Imports {
+                       var args []string
+                       if update {
+                               args = []string{"-u"}
+                       }
+                       args = append(args, m.Path)
+                       if err := c.get(args...); err != nil {
+                               return err
+                       }
+               }
+
+               return nil
+       }
+
+       return c.get(args...)
+}
+
+func (c *Client) get(args ...string) error {
        if err := c.runGo(context.Background(), c.logger.Out, append([]string{"get"}, args...)...); err != nil {
                errors.Wrapf(err, "failed to get %q", args)
        }
@@ -426,6 +448,11 @@ func (c *Client) runGo(
                        return nil
                }
 
+               if strings.Contains(stderr.String(), "invalid version: unknown revision") {
+                       // See https://github.com/gohugoio/hugo/issues/6825
+                       c.logger.FEEDBACK.Println(`hugo: you need to manually edit go.mod to resolve the unknown revision.`)
+               }
+
                _, ok := err.(*exec.ExitError)
                if !ok {
                        return errors.Errorf("failed to execute 'go %v': %s %T", args, err, err)