Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-02-20 14:17:23 +0000
committerDavid Williams2013-02-20 14:17:23 +0000
commitdbc0e3adbf776439f0c81b1ac31d86cc8a3de7f2 (patch)
treed51a69741b39fb66fab96aa27e72e7b07bfda0fd /production/get-aggregator.sh
parent7fe89e762c5436d538d98ea7df4abd552a8b7e0c (diff)
downloadeclipse.platform.releng.aggregator-dbc0e3adbf776439f0c81b1ac31d86cc8a3de7f2.tar.gz
eclipse.platform.releng.aggregator-dbc0e3adbf776439f0c81b1ac31d86cc8a3de7f2.tar.xz
eclipse.platform.releng.aggregator-dbc0e3adbf776439f0c81b1ac31d86cc8a3de7f2.zip
Bug 399893 - Move maven-cbi-plugin to org.eclipse.cbi (Update POMs)
Diffstat (limited to 'production/get-aggregator.sh')
-rw-r--r--production/get-aggregator.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/production/get-aggregator.sh b/production/get-aggregator.sh
index e3776d32a..95a571137 100644
--- a/production/get-aggregator.sh
+++ b/production/get-aggregator.sh
@@ -26,7 +26,6 @@ cd $BUILD_ROOT
# derived values
gitCache=$( fn-git-cache "$BUILD_ROOT" "${BRANCH}" )
aggDir=$( fn-git-dir "$gitCache" "$AGGREGATOR_REPO" )
-signingDir=$( fn-git-dir "$gitCache" "$SIGNING_REPO" )
if [ -r "$aggDir" ]; then
fn-git-clean-aggregator "$aggDir" "${BRANCH}"
@@ -55,19 +54,3 @@ buildDirectory=$( fn-build-dir "$BUILD_ROOT" "$BRANCH" "$BUILD_ID" "$STREAM" )
echo "$AGGREGATOR_REPO $BRANCH $EBUILDER_HASH" >> ${buildDirectory}/directory.txt
popd
-echo "signingDir: $signingDir"
-
-if [ -r "$signingDir" ]; then
- pushd "$signingDir"
- fn-git-clean
- fn-git-reset
- fn-git-checkout "$SIGNING_BRANCH"
- popd
-else
- pushd "$gitCache"
- fn-git-clone $(fn-local-repo "$SIGNING_REPO") "$SIGNING_BRANCH"
- popd
- pushd "$signingDir"
- fn-git-checkout "$SIGNING_BRANCH"
- popd
-fi

Back to the top