From: Bjørn Erik Pedersen Date: Wed, 23 Nov 2016 17:55:51 +0000 (+0100) Subject: commands: Simplify X-Git-Tag: v0.18~49 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4c72eb12;p=brevno-suite%2Fhugo commands: Simplify --- diff --git a/commands/hugo.go b/commands/hugo.go index a3654914..72296fd3 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -317,7 +317,7 @@ func InitializeConfig(subCmdVs ...*cobra.Command) error { } isDir, err := helpers.DirExists(cacheDir, hugofs.Source()) utils.CheckErr(err) - if isDir == false { + if !isDir { mkdir(cacheDir) } viper.Set("cacheDir", cacheDir)