Support '-u=patch' in hugo mod get
authorLuke de Waal <lr.de.waal.01@gmail.com>
Sun, 20 Mar 2022 15:24:37 +0000 (16:24 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 20 Mar 2022 21:07:26 +0000 (22:07 +0100)
The control-flow for running `hugo mod get` was adapted to allow for passing `-u=patch`
instead of only being able to pass `-u`.

Fixes #9127

modules/client.go

index fe0abc46256f5418558a1c8a215aedf83eb8fbc0..eab871d01b0637058c97ea91fb045aa4750635cf 100644 (file)
@@ -305,8 +305,9 @@ 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") {
+       if len(args) == 0 || (len(args) == 1 && strings.Contains(args[0], "-u")) {
                update := len(args) != 0
+               patch := update && (args[0] == "-u=patch") //
 
                // We need to be explicit about the modules to get.
                for _, m := range c.moduleConfig.Imports {
@@ -318,10 +319,14 @@ func (c *Client) Get(args ...string) error {
                                continue
                        }
                        var args []string
-                       if update {
+
+                       if update && !patch {
                                args = append(args, "-u")
+                       } else if update && patch {
+                               args = append(args, "-u=patch")
                        }
                        args = append(args, m.Path)
+
                        if err := c.get(args...); err != nil {
                                return err
                        }