summaryrefslogtreecommitdiffstats
path: root/commands/server.go
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2015-12-19 05:19:31 -0700
committerAnthony Fok <foka@debian.org>2015-12-19 05:19:31 -0700
commitde82404d35bc0673ca4fe5c400945b3fc4e9aae2 (patch)
treeb7947b5df25e3e10037230ccd9299edaac08d07c /commands/server.go
parenta1d232f4b674dcdc7757ccc3bdae2f95f0733720 (diff)
Fix hugo server "Watching for changes" path display
especially when the given `--source` path is a relative directory. Also, when `--source` is specified, make WorkingDir an absolute path from the very beginning, to be consistent with the case when `--source` is not given. Otherwise, the function name helpers.AbsPathify(), which prepends WorkingDir to a relative path, does not really make sense. Fixes #1721
Diffstat (limited to 'commands/server.go')
-rw-r--r--commands/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/server.go b/commands/server.go
index 3e41a14b4..ee4d38a18 100644
--- a/commands/server.go
+++ b/commands/server.go
@@ -159,7 +159,7 @@ func server(cmd *cobra.Command, args []string) error {
// Watch runs its own server as part of the routine
if serverWatch {
watchDirs := getDirList()
- baseWatchDir := helpers.AbsPathify(viper.GetString("WorkingDir"))
+ baseWatchDir := viper.GetString("WorkingDir")
for i, dir := range watchDirs {
watchDirs[i], _ = helpers.GetRelativePath(dir, baseWatchDir)
}