[ARVADOS] updated: 14c312c452e0e010d617c02a33b94a178632ac26
git at public.curoverse.com
git at public.curoverse.com
Thu May 8 09:33:59 EDT 2014
Summary of changes:
sdk/cli/bin/crunch-job | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
via 14c312c452e0e010d617c02a33b94a178632ac26 (commit)
from 5c3c04ad25cfabaa860bb0ea3f3dc078a9562008 (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 14c312c452e0e010d617c02a33b94a178632ac26
Author: Brett Smith <brett at curoverse.com>
Date: Thu May 8 09:34:33 2014 -0400
2492: Properly escape Docker image name in Crunch.
diff --git a/sdk/cli/bin/crunch-job b/sdk/cli/bin/crunch-job
index 48226d3..5d3bfdf 100755
--- a/sdk/cli/bin/crunch-job
+++ b/sdk/cli/bin/crunch-job
@@ -655,7 +655,7 @@ for (my $todo_ptr = 0; $todo_ptr <= $#jobstep_todo; $todo_ptr ++)
{
$command .= "-e \Q$env_key=$env_val\E ";
}
- $command .= "$docker_image ";
+ $command .= "\Q$docker_image\E ";
}
$command .= "$ENV{CRUNCH_SRC}/crunch_scripts/" . $Job->{"script"};
my @execargs = ('bash', '-c', $command);
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list