Skip to content

Commit

Permalink
[JENKINS-31166] Extra quotes messes up with environment variables
Browse files Browse the repository at this point in the history
content
  • Loading branch information
Vlatombe committed Oct 27, 2015
1 parent 493ec0d commit fff2c4f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -305,7 +305,7 @@ public void executeIn(String container, String userId, Launcher.ProcStarter star

// Build a list of environment, hidding node's one
for (Map.Entry<String, String> e : environment.entrySet()) {
prefix.add(e.getKey()+"=\""+e.getValue()+'\"');
prefix.add(e.getKey()+"="+e.getValue());
}

starter.cmds().addAll(0, prefix);
Expand Down

0 comments on commit fff2c4f

Please sign in to comment.