Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-26684] Escape special chars in maven build step arguments
(cherry picked from commit 58a41bc)
  • Loading branch information
olivergondza committed Mar 30, 2015
1 parent 6e94ee3 commit 9eaba2a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/src/main/java/hudson/tasks/Maven.java
Expand Up @@ -322,6 +322,10 @@ public boolean perform(AbstractBuild<?,?> build, Launcher launcher, BuildListene
wrapUpArguments(args,normalizedTarget,build,launcher,listener);

buildEnvVars(env, mi);

if (!launcher.isUnix()) {
args = args.toWindowsCommand();
}

try {
MavenConsoleAnnotator mca = new MavenConsoleAnnotator(listener.getLogger(),build.getCharset());
Expand Down

0 comments on commit 9eaba2a

Please sign in to comment.