summaryrefslogtreecommitdiffstats
path: root/deploy
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-06-18 18:35:11 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-06-18 19:38:34 +0200
commit12dc9a6e4acd5280a3e8b1658cbb96669fa97057 (patch)
tree655225ab0edd8347164e9548a4b8c69a46458c6b /deploy
parent1b85303ac20dc0fb30323ec971b996783c6e32f2 (diff)
deploy: Fix deploy defaults for non-zero flag values (e.g. maxDeletes, invalidateCDN)
This was broken in the config rewrite in Hugo 0.112.0. The workaround is to be explicit about setting these flag values (even if just using the defaults), e.g.: ``` hugo deploy --invalidateCDN --maxDeletes 256 ``` Fixes #11127
Diffstat (limited to 'deploy')
-rw-r--r--deploy/deployConfig.go11
1 files changed, 8 insertions, 3 deletions
diff --git a/deploy/deployConfig.go b/deploy/deployConfig.go
index 3f5465171..5bbec5ab4 100644
--- a/deploy/deployConfig.go
+++ b/deploy/deployConfig.go
@@ -127,11 +127,16 @@ func (m *Matcher) Matches(path string) bool {
return m.re.MatchString(path)
}
+var DefaultConfig = DeployConfig{
+ Workers: 10,
+ InvalidateCDN: true,
+ MaxDeletes: 256,
+}
+
// DecodeConfig creates a config from a given Hugo configuration.
func DecodeConfig(cfg config.Provider) (DeployConfig, error) {
- var (
- dcfg DeployConfig
- )
+
+ dcfg := DefaultConfig
if !cfg.IsSet(deploymentConfigKey) {
return dcfg, nil