You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by mf...@apache.org on 2013/03/07 12:22:16 UTC

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

* bin/deltacloudd: explicitly pass pattern to rerun

This works around a bug in rerun where the pattern winds up being nil
TrackedAt: http://tracker.deltacloud.org/patch/46db74c53c9461839885e72026e7b2a908a2b341


Project: http://git-wip-us.apache.org/repos/asf/deltacloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltacloud/commit/c063da8a
Tree: http://git-wip-us.apache.org/repos/asf/deltacloud/tree/c063da8a
Diff: http://git-wip-us.apache.org/repos/asf/deltacloud/diff/c063da8a

Branch: refs/heads/master
Commit: c063da8a8f90755f8d2fea3001236b30fad56912
Parents: 666aa65
Author: David Lutterkort <lu...@redhat.com>
Authored: Wed Mar 6 17:53:53 2013 -0800
Committer: Michal fojtik <mf...@redhat.com>
Committed: Thu Mar 7 12:17:18 2013 +0100

----------------------------------------------------------------------
 server/bin/deltacloudd |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltacloud/blob/c063da8a/server/bin/deltacloudd
----------------------------------------------------------------------
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