Skip to content

Commit

Permalink
Merge pull request #34 from jenkinsci/topic/workspaces-with-spaces
Browse files Browse the repository at this point in the history
fix for JENKINS-31717 allow spaces in workspace
  • Loading branch information
carlossg committed Dec 9, 2015
2 parents c3d13c1 + fae7318 commit 4a78fa2
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 4a78fa2

Please sign in to comment.