From: David Lutterkort <[email protected]>
This works around a bug in rerun where the pattern winds up being nil
---
server/bin/deltacloudd | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/server/bin/deltacloudd b/server/bin/deltacloudd
index 9246058..71e55d3 100755
--- a/server/bin/deltacloudd
+++ b/server/bin/deltacloudd
@@ -250,7 +250,8 @@ else
command = argv_opts.join(" ")
Dir::chdir($top_srcdir)
rerun = Rerun::Runner.new(command,
- :dir => File::join($top_srcdir, "lib"))
+ :dir => File::join($top_srcdir, "lib"),
+ :pattern => "**/*")
rerun.start
rerun.join
else
--
1.8.1.4