From 1217632307da183ec1e8bb710fb1ab1c570b324f Mon Sep 17 00:00:00 2001 From: bep Date: Thu, 12 Feb 2015 00:09:04 +0100 Subject: [PATCH] Remove now superfluous conditional --- commands/hugo.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/commands/hugo.go b/commands/hugo.go index 747a4b40e..d789820f6 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -258,11 +258,9 @@ func copyStatic() error { return nil } - 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", 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)