From: Scott C Wilson Date: Sun, 12 Jul 2015 17:25:43 +0000 (-0400) Subject: Checks to ensure theme directory, if specified, exists X-Git-Tag: v0.15~290 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=029cdb68;p=brevno-suite%2Fhugo Checks to ensure theme directory, if specified, exists See #1234 --- diff --git a/commands/hugo.go b/commands/hugo.go index cc4e1951..fabbaa51 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -278,7 +278,16 @@ func InitializeConfig() { jww.INFO.Println("Using config file:", viper.ConfigFileUsed()) + themeDir := helpers.GetThemeDir() + if themeDir != "" { + if _, err := os.Stat(themeDir); os.IsNotExist(err) { + jww.ERROR.Println("Unable to find theme Directory:", themeDir) + os.Exit(1) + } + } + themeVersionMismatch, minVersion := helpers.IsThemeVsHugoVersionMismatch() + if themeVersionMismatch { jww.ERROR.Printf("Current theme does not support Hugo version %s. Minimum version required is %s\n", helpers.HugoReleaseVersion(), minVersion)