Put back static theme conditional
authorspf13 <steve.francia@gmail.com>
Sat, 14 Feb 2015 23:30:15 +0000 (18:30 -0500)
committerspf13 <steve.francia@gmail.com>
Sat, 14 Feb 2015 23:30:15 +0000 (18:30 -0500)
commands/hugo.go

index d789820f6ffc3c3c30f3cbb2c9ac43f24669f2c9..747a4b40e6e18c365ab055055f1bfb7d6bb17369 100644 (file)
@@ -258,9 +258,11 @@ func copyStatic() error {
                return nil
        }
 
-       // Copy Static to Destination
-       jww.INFO.Println("syncing from", themeDir, "to", publishDir)
-       utils.CheckErr(syncer.Sync(publishDir, themeDir), fmt.Sprintf("Error copying static files of theme to %s", publishDir))
+       if themeDir != "" {
+               // Copy Static to Destination
+               jww.INFO.Println("syncing from", themeDir, "to", publishDir)
+               utils.CheckErr(syncer.Sync(publishDir, themeDir), fmt.Sprintf("Error copying static files of theme to %s", publishDir))
+       }
 
        // Copy Static to Destination
        jww.INFO.Println("syncing from", staticDir, "to", publishDir)