mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-25 22:00:58 +02:00
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
This commit is contained in:
@@ -329,7 +329,8 @@ func InitializeConfig(subCmdVs ...*cobra.Command) error {
|
||||
}
|
||||
|
||||
if Source != "" {
|
||||
viper.Set("WorkingDir", Source)
|
||||
dir, _ := filepath.Abs(Source)
|
||||
viper.Set("WorkingDir", dir)
|
||||
} else {
|
||||
dir, _ := os.Getwd()
|
||||
viper.Set("WorkingDir", dir)
|
||||
|
Reference in New Issue
Block a user