Skip to content

Commit

Permalink
Fixed JENKINS-9645 and JENKINS-9643
Browse files Browse the repository at this point in the history
  • Loading branch information
gboissinot committed May 10, 2011
1 parent 2453a85 commit 27f0df5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/msbuild/MsBuildBuilder.java
Expand Up @@ -108,7 +108,7 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
String normalizedFile = msBuildFile.replaceAll("[\t\r\n]+", " ");
normalizedFile = Util.replaceMacro(normalizedFile, env);
normalizedFile = Util.replaceMacro(normalizedFile, build.getBuildVariables());
if (normalizedArgs.length() > 0)
if (normalizedFile.length() > 0)
args.add(normalizedFile);
}

Expand Down

0 comments on commit 27f0df5

Please sign in to comment.