Copy static dir files without theme's static dir
authorTatsushi Demachi <tdemachi@gmail.com>
Tue, 1 Dec 2015 14:53:27 +0000 (23:53 +0900)
committerAnthony Fok <foka@debian.org>
Tue, 1 Dec 2015 17:01:21 +0000 (10:01 -0700)
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

commands/hugo.go

index b89f99464631044bed41bd22a6a00841cf3677b6..c275fccc9ac77020d640dcd1897080655149ad53 100644 (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