Don't call run_on_change guard method when there is no matched files.
This commit is contained in:
parent
eebd74b253
commit
85beb5e97a
10
lib/guard.rb
10
lib/guard.rb
@ -30,10 +30,12 @@ module Guard
|
|||||||
Interactor.init_signal_traps
|
Interactor.init_signal_traps
|
||||||
|
|
||||||
listener.on_change do |files|
|
listener.on_change do |files|
|
||||||
run do
|
if Watcher.match_files?(guards, files)
|
||||||
guards.each do |guard|
|
run do
|
||||||
paths = Watcher.match_files(guard, files)
|
guards.each do |guard|
|
||||||
supervised_task(guard, :run_on_change, paths) unless paths.empty?
|
paths = Watcher.match_files(guard, files)
|
||||||
|
supervised_task(guard, :run_on_change, paths) unless paths.empty?
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -30,5 +30,9 @@ module Guard
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def self.match_files?(guards, files)
|
||||||
|
guards.any? { |guard| !match_files(guard, files).empty? }
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
Loading…
Reference in New Issue
Block a user