Checks to ensure theme directory, if specified, exists
authorScott C Wilson <scottcwilson@gmail.com>
Sun, 12 Jul 2015 17:25:43 +0000 (13:25 -0400)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 13 Jul 2015 08:31:59 +0000 (10:31 +0200)
See #1234

commands/hugo.go

index cc4e19516d1f60991a2e79bc39a9f94c9bb3642b..fabbaa51a1a1003871e0d5c91385b6344f84d421 100644 (file)
@@ -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)