projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e18087
)
commands: Simplify err condition
author
bogem
<albertnigma@gmail.com>
Tue, 30 Aug 2016 17:20:39 +0000
(22:20 +0500)
committer
Bjørn Erik Pedersen
<bjorn.erik.pedersen@gmail.com>
Sun, 11 Sep 2016 10:23:09 +0000
(12:23 +0200)
commands/hugo.go
patch
|
blob
|
history
diff --git
a/commands/hugo.go
b/commands/hugo.go
index ce6425489efdc3bd819e0032ec9b40ac6855543b..628219be38dd45658ab6ff6cfd08cfa0c987d356 100644
(file)
--- 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.