commands: Simplify err condition

This commit is contained in:
bogem 2016-08-30 22:20:39 +05:00 committed by Bjørn Erik Pedersen
parent 1e18087356
commit 2294b0226d

View 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.