From: Bjørn Erik Pedersen Date: Tue, 18 Feb 2020 12:35:29 +0000 (+0100) Subject: modules: Do not try to get local themes in "hugo mod get" X-Git-Tag: v0.65.0~18 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=20f2211fce55e1811629245f9e5e4a2ac754d788;p=brevno-suite%2Fhugo modules: Do not try to get local themes in "hugo mod get" Fixes #6893 --- diff --git a/modules/client.go b/modules/client.go index 1aacc5aa..8ea8b179 100644 --- a/modules/client.go +++ b/modules/client.go @@ -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"}