From d7404396b8355516136ede62615536e4cd0e2b59 Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Thu, 24 Jul 2014 02:40:32 +0200 Subject: [PATCH] debian_build.py: Fix another shell escape. --- debian_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian_build.py b/debian_build.py index 52935fb..4025f72 100755 --- a/debian_build.py +++ b/debian_build.py @@ -668,7 +668,7 @@ export {builder_env} FORCE_SHELL=TRUE jenkins_workspace=builder.dsc_dir, builder_env=' '.join(['{k}="{v}"'.format(k=key, v=builder.env[key],) for key in builder.env.keys()]), - command=' '.join(builder.command), + command=' '.join(escape_arg(arg) for arg in builder.command), orig_branch=ENV['GIT_BRANCH'], )) -- 2.39.5