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
This commit is contained in:
Tatsushi Demachi 2015-12-01 23:53:27 +09:00 committed by Anthony Fok
parent c5e68ba197
commit 6c8103144f

View file

@ -369,8 +369,7 @@ func copyStatic() error {
themeDir, err := helpers.GetThemeStaticDirPath()
if err != nil {
jww.ERROR.Println(err)
return nil
jww.WARN.Println(err)
}
// Copy the theme's static directory