Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-07-30 14:35:16 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-07-31 13:10:05 +0300
commit36220851e4ed7fc3fa78aa250d001d5f922210e7 (patch)
tree730a02b3326b711cb18b4203b3cd530e753c0d17 /modules/config.go
parent53ade40ba47e73d0505b1685538b525f291b6e08 (diff)
Fix self-mounts on the main project
Fixes #6143
Diffstat (limited to 'modules/config.go')
-rw-r--r--modules/config.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/config.go b/modules/config.go
index 122fd6c55..163bc7049 100644
--- a/modules/config.go
+++ b/modules/config.go
@@ -171,6 +171,9 @@ func ApplyProjectConfigDefaults(cfg config.Provider, mod Module) error {
mounts = append(mounts, Mount{Source: dirKey.component, Target: dirKey.component})
}
+ // Prepend the mounts from configuration.
+ mounts = append(moda.mounts, mounts...)
+
// Remove duplicates
seen := make(map[string]bool)
tmp := mounts[:0]