Skip to content

Commit

Permalink
[FIXED JENKINS-12260] fix wrong workspace determination
Browse files Browse the repository at this point in the history
  • Loading branch information
imod committed Dec 31, 2011
1 parent ace4d5a commit 2530ddc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -112,7 +112,7 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
listener.getLogger().println("executing script '" + buildStepId + "'");
File tempFile = null;
try {
FilePath workingDir = build.getModuleRoot();
FilePath workingDir = build.getWorkspace();
EnvVars env = build.getEnvironment(listener);
Launcher lastBuiltLauncher = getLastBuiltLauncher(build, launcher, listener);
String data = buildStepConfig.content;
Expand Down

0 comments on commit 2530ddc

Please sign in to comment.