ref: 6c8103144fc7b65251d2ba26eb23630bc96807f0
parent: c5e68ba197d5f467e213447faa10e8bb72580cea
author: Tatsushi Demachi <[email protected]>
date: Tue Dec 1 18:53:27 EST 2015
Copy static dir files without theme's static dir Hugo command doesn't copy site's "static" directory files to "public" directory if a specified theme doesn't have "static" directory because theme's "static" directory checking always returns an error. This fixes it by just showing a warning message about theme's "static" directory absence and not skipping following processes. Fix #1655
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -369,8 +369,7 @@
themeDir, err := helpers.GetThemeStaticDirPath()
if err != nil {
- jww.ERROR.Println(err)
- return nil
+ jww.WARN.Println(err)
}
// Copy the theme's static directory