summaryrefslogtreecommitdiffhomepage
path: root/modules/config.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <[email protected]>2019-07-30 13:35:16 +0200
committerBjørn Erik Pedersen <[email protected]>2019-07-31 12:10:05 +0200
commit36220851e4ed7fc3fa78aa250d001d5f922210e7 (patch)
tree730a02b3326b711cb18b4203b3cd530e753c0d17 /modules/config.go
parent53ade40ba47e73d0505b1685538b525f291b6e08 (diff)
downloadhugo-36220851e4ed7fc3fa78aa250d001d5f922210e7.tar.gz
hugo-36220851e4ed7fc3fa78aa250d001d5f922210e7.zip
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]