Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory authored and Gregory committed Sep 8, 2011
1 parent 4be879f commit b3af677
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -9,6 +9,7 @@

import java.io.IOException;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;


Expand All @@ -30,7 +31,9 @@ public void addEnvVarsToEnvInjectBuildAction(AbstractBuild<?, ?> build, Map<Stri
} else {
envInjectAction = new EnvInjectAction(rootPath.act(new Callable<Map<String, String>, EnvInjectException>() {
public Map<String, String> call() throws EnvInjectException {
return EnvVars.masterEnvVars;
HashMap<String, String> result = new HashMap<String, String>();
result.putAll(EnvVars.masterEnvVars);
return result;
}
}));
envInjectAction.overrideAll(envMap);
Expand Down

0 comments on commit b3af677

Please sign in to comment.