summaryrefslogtreecommitdiffstats
path: root/commands/hugo.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-04-09 18:49:13 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-04-11 09:48:56 +0200
commit4b780ca778ee7f25af808da38ede964a01698c70 (patch)
treee243fba63e913f8000dec2891081c1987fe25c8b /commands/hugo.go
parent7bc5e89fbaa5c613b8853ff7b69fae570bd0b56d (diff)
commands: Make convert command non-global
See #4598
Diffstat (limited to 'commands/hugo.go')
-rw-r--r--commands/hugo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/hugo.go b/commands/hugo.go
index 5db5239ea..f4fbe45da 100644
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -199,7 +199,7 @@ func AddCommands() {
HugoCmd.AddCommand(configCmd)
HugoCmd.AddCommand(newCheckCmd().getCommand())
HugoCmd.AddCommand(newBenchmarkCmd().getCommand())
- HugoCmd.AddCommand(convertCmd)
+ HugoCmd.AddCommand(newConvertCmd().getCommand())
HugoCmd.AddCommand(newCmd)
HugoCmd.AddCommand(listCmd)
HugoCmd.AddCommand(importCmd)