summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-04-11 10:09:45 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-04-11 10:09:45 +0200
commitf396cffa239e948075af2224208671956d8b4a84 (patch)
treeeeb44936b81b186138349bfc0d992e8ae951f523 /commands
parent24d5c219424a9777bb1dd366b43e68e6f47e1adb (diff)
commands: Fix the config command
It now also accepts the `-s` (source) flag. See #4598
Diffstat (limited to 'commands')
-rw-r--r--commands/commands_test.go1
-rw-r--r--commands/config.go (renamed from commands/list_config.go)5
2 files changed, 5 insertions, 1 deletions
diff --git a/commands/commands_test.go b/commands/commands_test.go
index 4eab9b99f..7e590bea0 100644
--- a/commands/commands_test.go
+++ b/commands/commands_test.go
@@ -51,6 +51,7 @@ func TestCommands(t *testing.T) {
// no args = hugo build
{nil, []string{sourceFlag}, ""},
{nil, []string{sourceFlag, "--renderToMemory"}, ""},
+ {[]string{"config"}, []string{sourceFlag}, ""},
{[]string{"benchmark"}, []string{sourceFlag, "-n=1"}, ""},
{[]string{"convert", "toTOML"}, []string{sourceFlag, "-o=" + filepath.Join(dirOut, "toml")}, ""},
{[]string{"convert", "toYAML"}, []string{sourceFlag, "-o=" + filepath.Join(dirOut, "yaml")}, ""},
diff --git a/commands/list_config.go b/commands/config.go
index 32b739d8a..951b57540 100644
--- a/commands/list_config.go
+++ b/commands/config.go
@@ -25,6 +25,7 @@ import (
var _ cmder = (*configCmd)(nil)
type configCmd struct {
+ hugoBuilderCommon
*baseCmd
}
@@ -37,11 +38,13 @@ func newConfigCmd() *configCmd {
RunE: cc.printConfig,
})
+ cc.cmd.Flags().StringVarP(&cc.source, "source", "s", "", "filesystem path to read files relative from")
+
return cc
}
func (c *configCmd) printConfig(cmd *cobra.Command, args []string) error {
- cfg, err := initializeConfig(false, nil, c, nil)
+ cfg, err := initializeConfig(false, &c.hugoBuilderCommon, c, nil)
if err != nil {
return err