Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-01-16 03:36:25 +0000
committerDavid Williams2013-01-16 03:36:25 +0000
commitcfe0d870ea6131cc058650068255881c48e65f9d (patch)
tree0cc2e9a1291feebc243e7eed7cf83cc3090d0405 /scripts/build-functions.sh
parentcd70e43d2ec5dec2314103153936a9bedb480850 (diff)
downloadeclipse.platform.releng.aggregator-cfe0d870ea6131cc058650068255881c48e65f9d.tar.gz
eclipse.platform.releng.aggregator-cfe0d870ea6131cc058650068255881c48e65f9d.tar.xz
eclipse.platform.releng.aggregator-cfe0d870ea6131cc058650068255881c48e65f9d.zip
Bug 398247 - [CBI] Need guards for invalid build steps ... invalid
filenames?
Diffstat (limited to 'scripts/build-functions.sh')
-rw-r--r--scripts/build-functions.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build-functions.sh b/scripts/build-functions.sh
index 99c679a7d..9094a5b21 100644
--- a/scripts/build-functions.sh
+++ b/scripts/build-functions.sh
@@ -543,8 +543,8 @@ fn-gather-swt-zips ()
BUILD_ID="$1"; shift
REPO_DIR="$1"; shift
BUILD_DIR="$1"; shift
- # TODO: this one does not accomplish much, since "binaries/bundles" always
-# exists. Results in a lot of "not found" msg. Doubt there's any simple solution.
+ # TODO: this directory sanity check does not accomplish much, since "binaries/bundles" always
+ # exists. Results in "not found" msg. Doubt there's any simple solution.
SWT_BUNDLES_DIR="$REPO_DIR"/eclipse.platform.swt.binaries/bundles
if [[ -d "$SWT_BUNDLES_DIR" ]]
then
@@ -606,7 +606,7 @@ fn-slice-repos ()
-buildfile "$ANT_SCRIPT" \
-Declipse.build.configs="$REPO_DIR"/eclipse.platform.releng.tychoeclipsebuilder \
-DbuildId="$BUILD_ID" \
- -DbuildRepo="$REPO_DIR_DIR \
+ -DbuildRepo="$REPO_DIR_DIR" \
-DpostingDirectory=$(dirname "$BUILD_DIR") \
-DequinoxPostingDirectory=$(dirname "$BUILD_DIR") \
-DbuildLabel="$BUILD_ID" \

Back to the top