summaryrefslogtreecommitdiffstats
path: root/modules/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/config.go')
-rw-r--r--modules/config.go9
1 files changed, 3 insertions, 6 deletions
diff --git a/modules/config.go b/modules/config.go
index 1ce8c9f02..d56f38343 100644
--- a/modules/config.go
+++ b/modules/config.go
@@ -113,10 +113,11 @@ func ApplyProjectConfigDefaults(cfg config.Provider, mod Module) error {
source := cfg.GetString(d.key)
componentsConfigured[d.component] = true
- return []Mount{Mount{
+ return []Mount{{
// No lang set for layouts etc.
Source: source,
- Target: d.component}}
+ Target: d.component,
+ }}
}
return nil
@@ -166,7 +167,6 @@ func ApplyProjectConfigDefaults(cfg config.Provider, mod Module) error {
var mounts []Mount
for _, dirKey := range dirKeys {
if componentsConfigured[dirKey.component] {
-
continue
}
@@ -240,7 +240,6 @@ func decodeConfig(cfg config.Provider, pathReplacements map[string]string) (Conf
c.Imports[i] = imp
}
}
-
}
for i, mnt := range c.Mounts {
@@ -393,11 +392,9 @@ func getStaticDirs(cfg config.Provider) []string {
}
func getStringOrStringSlice(cfg config.Provider, key string, id int) []string {
-
if id >= 0 {
key = fmt.Sprintf("%s%d", key, id)
}
return config.GetStringSlicePreserveString(cfg, key)
-
}