commands: Simplify err condition
authorbogem <albertnigma@gmail.com>
Tue, 30 Aug 2016 17:20:39 +0000 (22:20 +0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 11 Sep 2016 10:23:09 +0000 (12:23 +0200)
commands/hugo.go

index ce6425489efdc3bd819e0032ec9b40ac6855543b..628219be38dd45658ab6ff6cfd08cfa0c987d356 100644 (file)
@@ -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.