Skip to content

Commit

Permalink
fix for JENKINS-31717 allow spaces in workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelneale committed Nov 25, 2015
1 parent c3d13c1 commit fae7318
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -328,7 +328,7 @@ private boolean buildAndTag() throws MacroEvaluationException, IOException, Inte
+ ((isNoCache()) ? " --no-cache=true " : "") + " "
+ ((isForcePull()) ? " --pull=true " : "") + " "
+ (defined(getDockerfilePath()) ? " --file=" + getDockerfilePath() : "") + " "
+ context);
+ "'" + context + "'");
}
// get the image to save rebuilding it to apply the other tags
String image = getImageBuiltFromStdout(lastResult.stdout);
Expand Down

0 comments on commit fae7318

Please sign in to comment.