Merge pull request #1581 from jsdalton/bug/incorrect-file-watch-config
Fix misnamed config value which was causing --force-polling flag to b…
This commit is contained in:
commit
ee5e8ff4a1
|
@ -30,7 +30,7 @@ module Middleman
|
||||||
# Setup source collection.
|
# Setup source collection.
|
||||||
@sources = ::Middleman::Sources.new(app,
|
@sources = ::Middleman::Sources.new(app,
|
||||||
disable_watcher: app.config[:watcher_disable],
|
disable_watcher: app.config[:watcher_disable],
|
||||||
force_polling: app.config[:force_polling],
|
force_polling: app.config[:watcher_force_polling],
|
||||||
latency: app.config[:watcher_latency])
|
latency: app.config[:watcher_latency])
|
||||||
|
|
||||||
# Add default ignores.
|
# Add default ignores.
|
||||||
|
|
Loading…
Reference in a new issue