diff options
author | Bjørn Erik Pedersen <[email protected]> | 2019-07-30 13:35:16 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2019-07-31 12:10:05 +0200 |
commit | 36220851e4ed7fc3fa78aa250d001d5f922210e7 (patch) | |
tree | 730a02b3326b711cb18b4203b3cd530e753c0d17 /modules/config.go | |
parent | 53ade40ba47e73d0505b1685538b525f291b6e08 (diff) | |
download | hugo-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.go | 3 |
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] |