Restart the listener when reloading the server
This commit is contained in:
parent
8a898f8239
commit
b35de4834b
|
@ -33,14 +33,14 @@ module Middleman
|
||||||
|
|
||||||
mount_instance(app)
|
mount_instance(app)
|
||||||
|
|
||||||
|
start_file_watcher unless options[:"disable-watcher"]
|
||||||
|
|
||||||
@initialized ||= false
|
@initialized ||= false
|
||||||
unless @initialized
|
unless @initialized
|
||||||
@initialized = true
|
@initialized = true
|
||||||
|
|
||||||
register_signal_handlers unless ::Middleman::WINDOWS
|
register_signal_handlers unless ::Middleman::WINDOWS
|
||||||
|
|
||||||
start_file_watcher unless options[:"disable-watcher"]
|
|
||||||
|
|
||||||
# Save the last-used options so it may be re-used when
|
# Save the last-used options so it may be re-used when
|
||||||
# reloading later on.
|
# reloading later on.
|
||||||
@last_options = options
|
@last_options = options
|
||||||
|
@ -83,7 +83,10 @@ module Middleman
|
||||||
|
|
||||||
if added_and_modified.length > 0
|
if added_and_modified.length > 0
|
||||||
# See if the changed file is config.rb or lib/*.rb
|
# See if the changed file is config.rb or lib/*.rb
|
||||||
return reload if needs_to_reload?(added_and_modified)
|
if needs_to_reload?(added_and_modified)
|
||||||
|
reload
|
||||||
|
return listener.stop
|
||||||
|
end
|
||||||
|
|
||||||
# Otherwise forward to Middleman
|
# Otherwise forward to Middleman
|
||||||
added_and_modified.each do |path|
|
added_and_modified.each do |path|
|
||||||
|
@ -93,7 +96,10 @@ module Middleman
|
||||||
|
|
||||||
if removed.length > 0
|
if removed.length > 0
|
||||||
# See if the changed file is config.rb or lib/*.rb
|
# See if the changed file is config.rb or lib/*.rb
|
||||||
return reload if needs_to_reload?(removed)
|
if needs_to_reload?(removed)
|
||||||
|
reload
|
||||||
|
return listener.stop
|
||||||
|
end
|
||||||
|
|
||||||
# Otherwise forward to Middleman
|
# Otherwise forward to Middleman
|
||||||
removed.each do |path|
|
removed.each do |path|
|
||||||
|
|
Loading…
Reference in a new issue