Use current working dir as WorkingDir instead of hugo executable's dir
authorTatsushi Demachi <tdemachi@gmail.com>
Fri, 21 Nov 2014 00:40:45 +0000 (09:40 +0900)
committerspf13 <steve.francia@gmail.com>
Fri, 12 Dec 2014 16:33:52 +0000 (11:33 -0500)
commands/hugo.go

index 5a395e241481036709c47d5562a179220275e2c7..d43bb0ac07179ba7bc5e5062161d22d01ab4a5da 100644 (file)
@@ -190,7 +190,7 @@ func InitializeConfig() {
        if Source != "" {
                viper.Set("WorkingDir", Source)
        } else {
-               dir, _ := helpers.FindCWD()
+               dir, _ := os.Getwd()
                viper.Set("WorkingDir", dir)
        }