From 2294b0226da244e6a4bb1f67abc47f88f7e67d2d Mon Sep 17 00:00:00 2001 From: bogem Date: Tue, 30 Aug 2016 22:20:39 +0500 Subject: [PATCH] commands: Simplify err condition --- commands/hugo.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/commands/hugo.go b/commands/hugo.go index ce6425489..628219be3 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -551,11 +551,7 @@ func copyStatic() error { // because we are using a baseFs (to get the union right). // set sync src to root - err := syncer.Sync(publishDir, helpers.FilePathSeparator) - if err != nil { - return err - } - return nil + return syncer.Sync(publishDir, helpers.FilePathSeparator) } // getDirList provides NewWatcher() with a list of directories to watch for changes.