Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-03-28 22:14:18 +0000
committerDavid Williams2013-03-28 22:14:18 +0000
commit0252b0bb078906c5e483adad082c6b2ab9cb0227 (patch)
tree4b0dab51484c90b0f0523eaa078e1096dcc9e6bb /production/pom-version-updater.sh
parent11da483b969c408c519ace7e0248448e97b3314f (diff)
downloadeclipse.platform.releng.aggregator-0252b0bb078906c5e483adad082c6b2ab9cb0227.tar.gz
eclipse.platform.releng.aggregator-0252b0bb078906c5e483adad082c6b2ab9cb0227.tar.xz
eclipse.platform.releng.aggregator-0252b0bb078906c5e483adad082c6b2ab9cb0227.zip
Bug 404593 - misc. minor improvements in production scripts
Diffstat (limited to 'production/pom-version-updater.sh')
-rwxr-xr-xproduction/pom-version-updater.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/production/pom-version-updater.sh b/production/pom-version-updater.sh
index a7d6d7f3a..3c961ce73 100755
--- a/production/pom-version-updater.sh
+++ b/production/pom-version-updater.sh
@@ -26,7 +26,7 @@ cd $BUILD_ROOT
# derived values
gitCache=$( fn-git-cache "$BUILD_ROOT" "$BRANCH" )
aggDir=$( fn-git-dir "$gitCache" "$AGGREGATOR_REPO" )
-buildDirectory=$( fn-build-dir "$BUILD_ROOT" "$BRANCH" "$BUILD_ID" "$STREAM" )
+buildDirectory=$( fn-build-dir "$BUILD_ROOT" "$BUILD_ID" "$STREAM" )
if [ -z "$BUILD_ID" ]; then
BUILD_ID=$(fn-build-id "$BUILD_TYPE" )
@@ -36,7 +36,7 @@ fn-pom-version-updater "$aggDir" "$LOCAL_REPO" $MVN_DEBUG $MVN_QUIET
RC=$?
if [[ $RC != 0 ]]
then
- buildDirectory=$( fn-build-dir "$BUILD_ROOT" "$BRANCH" "$BUILD_ID" "$STREAM" )
+ buildDirectory=$( fn-build-dir "$BUILD_ROOT" "$BUILD_ID" "$STREAM" )
# create as "indicator file" ... gets filled in more once there is a log to grep
touch "${buildDirectory}/buildFailed-pom-version-updater"
echo "ERROR: fn-pom-version-updator returned non-zero return code: $RC"

Back to the top