ref: b98c2088f83dfa663b2d74c959b0935deecdf399
parent: 4b9e4c90d923d8d998ec57b9db5fdd34a299505b
author: Oscar Bolmsten <oscar@bolmsten.se>
date: Sun Oct 5 05:41:54 EDT 2014
Minor fix to error message when copying static files
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -216,7 +216,7 @@
func copyStatic() error { staticDir := helpers.AbsPathify(viper.GetString("StaticDir")) + "/" if _, err := os.Stat(staticDir); os.IsNotExist(err) {- jww.ERROR.Println("Unable to find Static Directory:", viper.GetString("theme"), "in", staticDir)+ jww.ERROR.Println("Unable to find Static Directory:", staticDir)return nil
}
@@ -225,7 +225,7 @@
if themeSet() { themeDir := helpers.AbsPathify("themes/"+viper.GetString("theme")) + "/static/" if _, err := os.Stat(themeDir); os.IsNotExist(err) {- jww.ERROR.Println("Unable to find static directory for theme :", viper.GetString("theme"), "in", themeDir)+ jww.ERROR.Println("Unable to find static directory for theme:", viper.GetString("theme"), "in", themeDir)return nil
}
--
⑨