diff --git a/lib/pipeline/util/container_driver.rb b/lib/pipeline/util/container_driver.rb index ca726e3..8fd4d80 100644 --- a/lib/pipeline/util/container_driver.rb +++ b/lib/pipeline/util/container_driver.rb @@ -36,10 +36,10 @@ module Pipeline::Util def run_analyzer notifier = INotify::Notifier.new - notifier.watch("iteration", :moved_to, :create) do |event| + notifier.watch("#{workdir}/iteration", :moved_to, :create) do |event| puts "#{event.name} is now in iteration!" end - notifier.watch("tmp", :moved_to, :create) do |event| + notifier.watch("#{workdir}/tmp", :moved_to, :create) do |event| puts "#{event.name} is now in tmp!" end Thread.new do