}{{[]string{"server",
"--config=myconfig.toml",
"--contentDir=mycontent",
+ "--disableKinds=page,home",
"--layoutDir=mylayouts",
"--theme=mytheme",
+ "--gc",
"--themesDir=mythemes",
"--cleanDestinationDir",
"--navigateToChanged",
assert.Equal("mytheme", cfg.GetString("theme"))
assert.Equal("mythemes", cfg.GetString("themesDir"))
+ assert.Equal([]string{"page", "home"}, cfg.Get("disableKinds"))
+
assert.True(cfg.GetBool("uglyURLs"))
+ assert.True(cfg.GetBool("gc"))
// The flag is named i18n-warnings
assert.True(cfg.GetBool("logI18nWarnings"))
if targetKey != "" {
configKey = targetKey
}
- cfg.Set(configKey, f.Value.String())
+ // Gotta love this API.
+ switch f.Value.Type() {
+ case "bool":
+ bv, _ := flags.GetBool(key)
+ cfg.Set(configKey, bv)
+ case "string":
+ cfg.Set(configKey, f.Value.String())
+ case "stringSlice":
+ bv, _ := flags.GetStringSlice(key)
+ cfg.Set(configKey, bv)
+ default:
+ panic(fmt.Sprintf("update switch with %s", f.Value.Type()))
+ }
+
}
}