Skip to content

Commit

Permalink
JENKINS-12089 : buildDirectory is wrongly computed thus the cleaning …
Browse files Browse the repository at this point in the history
…of IPAs fails
  • Loading branch information
aheritier committed Dec 15, 2011
1 parent 4f2c02a commit 8f87e6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/au/com/rayh/XCodeBuilder.java
Expand Up @@ -166,8 +166,8 @@ public boolean perform(AbstractBuild build, Launcher launcher, BuildListener lis
}

if (configurationBuildDirValue != null){
// If there is a CONFIGURATION_BUILD_DIR, that overrides any use of SYMROOT. Does not require the build platform.
buildDirectory = new FilePath(projectRoot.getChannel(),configurationBuildDirValue).child(configuration);
// If there is a CONFIGURATION_BUILD_DIR, that overrides any use of SYMROOT. Does not require the build platform and the configuration.
buildDirectory = new FilePath(projectRoot.getChannel(),configurationBuildDirValue);
} else if (symRootValue != null){
// If there is a SYMROOT specified, compute the build directory from that.
buildDirectory = new FilePath(projectRoot.getChannel(),symRootValue).child(configuration + "-" + buildPlatform);
Expand Down

0 comments on commit 8f87e6b

Please sign in to comment.