You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@deltacloud.apache.org by lu...@redhat.com on 2013/03/07 03:18:51 UTC

[PATCH 6/8] * bin/deltacloudd: explicitly pass pattern to rerun

From: David Lutterkort <lu...@redhat.com>

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