[ARVADOS] updated: 55fc92b5f382b964b65c952f047bc673df582d98

git at public.curoverse.com git at public.curoverse.com
Thu Jan 8 13:47:12 EST 2015


Summary of changes:
 sdk/cli/bin/crunch-job | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

       via  55fc92b5f382b964b65c952f047bc673df582d98 (commit)
      from  38891aedbd12a4a04a7009edc1203fadf564af46 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 55fc92b5f382b964b65c952f047bc673df582d98
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date:   Thu Jan 8 13:48:42 2015 -0500

    4312: Remove redundant parenthesis.

diff --git a/sdk/cli/bin/crunch-job b/sdk/cli/bin/crunch-job
index bf2612d..3539a57 100755
--- a/sdk/cli/bin/crunch-job
+++ b/sdk/cli/bin/crunch-job
@@ -1854,7 +1854,7 @@ if (@ARGV) {
   my $pkgs;
   if ($venv_built) {
     $Log->("Running in Python SDK virtualenv");
-    $pkgs = `((\Q$venv_dir/bin/pip\E freeze 2>/dev/null | grep arvados) || dpkg-query --show '*arvados*')`;
+    $pkgs = `(\Q$venv_dir/bin/pip\E freeze 2>/dev/null | grep arvados) || dpkg-query --show '*arvados*'`;
     my $orig_argv = join(" ", map { quotemeta($_); } @ARGV);
     @ARGV = ("/bin/sh", "-ec",
              ". \Q$venv_dir/bin/activate\E; exec $orig_argv");
@@ -1862,7 +1862,7 @@ if (@ARGV) {
     $Log->("Warning: virtualenv not found inside Docker container default " +
            "\$PATH. Can't install Python SDK.");
   } else {
-    $pkgs = `((pip freeze 2>/dev/null | grep arvados) || dpkg-query --show '*arvados*')`;
+    $pkgs = `(pip freeze 2>/dev/null | grep arvados) || dpkg-query --show '*arvados*'`;
   }
 
   if ($pkgs) {

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list