Do not call watchConfig() when not in watch mode
authorAnthony Fok <foka@debian.org>
Wed, 13 Jan 2016 06:34:29 +0000 (23:34 -0700)
committerSteve Francia <steve.francia@gmail.com>
Fri, 29 Jan 2016 21:21:55 +0000 (16:21 -0500)
commite8eb61816631c0f99b15844f40ad175728c9e8c9
tree34bbe1fb476f0505d19f5bcbf4880ad05401f435
parentc438f45629a42fe1a38ea1ff665c6016bb5e8aa1
Do not call watchConfig() when not in watch mode

See #1772

Also, force DisableLiveReload to true when running "hugo --watch"
(build-only non-server mode) to prevent livereload.ForceRefresh(),
which would end up blocking watchConfig() forever, from being called
because livereload.Initialize() is never called in this case.

This fixes the bug where "hugo --watch" could only reload config.toml
once before it gets stuck for good at livereload.ForceRefresh().

This is also consistent with Hugo's existing behaviour:
Non-server "hugo --watch" has never injected livereload.js
since the inception of the "watch" feature in Hugo v0.12.
commands/hugo.go