summaryrefslogtreecommitdiffstats
path: root/commands/check.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-02-05 18:41:40 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-02-05 21:18:45 +0100
commit87ca0d0cbea19dd2c0aac44dc2731e6247a82ece (patch)
tree0982fb3e77c5f2de3e8216041f0ee975806a29ae /commands/check.go
parentbd0176a5487b0d8c368a14b3f283b9029f51d619 (diff)
Clean flags
* Reduce the amount of global flags * Unexport all flag vars and commands vars * Some other minor flag cleaning
Diffstat (limited to 'commands/check.go')
-rw-r--r--commands/check.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/check.go b/commands/check.go
index 8d6350b93..e8d2e12ed 100644
--- a/commands/check.go
+++ b/commands/check.go
@@ -26,7 +26,7 @@ and will give feedback.`,
}
func init() {
- initCoreCommonFlags(checkCmd)
+ initHugoBuilderFlags(checkCmd)
checkCmd.RunE = check
}