commands: Simplify err condition - hugo - [fork] hugo port for 9front
(HTM) git clone git@git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit 2294b0226da244e6a4bb1f67abc47f88f7e67d2d
(DIR) parent 1e180873568ae6edf65dc95c47a3f70f601bcc9e
(HTM) Author: bogem <albertnigma@gmail.com>
Date: Tue, 30 Aug 2016 22:20:39 +0500
commands: Simplify err condition
Diffstat:
M commands/hugo.go | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
---
(DIR) diff --git 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.