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:
ec4b6c0
)
Use current working dir as WorkingDir instead of hugo executable's dir
author
Tatsushi Demachi
<tdemachi@gmail.com>
Fri, 21 Nov 2014 00:40:45 +0000
(09:40 +0900)
committer
spf13
<steve.francia@gmail.com>
Fri, 12 Dec 2014 16:33:52 +0000
(11:33 -0500)
commands/hugo.go
patch
|
blob
|
history
diff --git
a/commands/hugo.go
b/commands/hugo.go
index 5a395e241481036709c47d5562a179220275e2c7..d43bb0ac07179ba7bc5e5062161d22d01ab4a5da 100644
(file)
--- a/
commands/hugo.go
+++ b/
commands/hugo.go
@@
-190,7
+190,7
@@
func InitializeConfig() {
if Source != "" {
viper.Set("WorkingDir", Source)
} else {
- dir, _ :=
helpers.FindCWD
()
+ dir, _ :=
os.Getwd
()
viper.Set("WorkingDir", dir)
}