modules: Do not try to get local themes in "hugo mod get"
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 18 Feb 2020 12:35:29 +0000 (13:35 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 18 Feb 2020 13:08:58 +0000 (14:08 +0100)
Fixes #6893

modules/client.go

index 1aacc5aa7be8033c0af39333f21672eab5174229..8ea8b179409c47fe9b66bb6fdff28428a824637e 100644 (file)
@@ -264,6 +264,13 @@ func (c *Client) Get(args ...string) error {
 
                // We need to be explicit about the modules to get.
                for _, m := range c.moduleConfig.Imports {
+                       if !isProbablyModule(m.Path) {
+                               // Skip themes/components stored below /themes etc.
+                               // There may be false positives in the above, but those
+                               // should be rare, and they will fail below with an
+                               // "cannot find module providing ..." message.
+                               continue
+                       }
                        var args []string
                        if update {
                                args = []string{"-u"}