Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2014-05-18 18:43:11 +0000
committerDavid Williams2014-05-18 18:43:11 +0000
commitf8c8e92fbeacfddce290a02cb0d5ce5b7cd1d6bd (patch)
treeea20b3823609d7c8c621b0392067040ac3c9dd63 /production/getEBuilderForDropDir.sh
parent934047c9e1eb4c853d2610ae60e458aaecff6b67 (diff)
downloadeclipse.platform.releng.aggregator-f8c8e92fbeacfddce290a02cb0d5ce5b7cd1d6bd.tar.gz
eclipse.platform.releng.aggregator-f8c8e92fbeacfddce290a02cb0d5ce5b7cd1d6bd.tar.xz
eclipse.platform.releng.aggregator-f8c8e92fbeacfddce290a02cb0d5ce5b7cd1d6bd.zip
Bug 409076 - establish standard formatting - indentation
Diffstat (limited to 'production/getEBuilderForDropDir.sh')
-rwxr-xr-xproduction/getEBuilderForDropDir.sh94
1 files changed, 47 insertions, 47 deletions
diff --git a/production/getEBuilderForDropDir.sh b/production/getEBuilderForDropDir.sh
index 2e216dbc1..ad8ac9b7d 100755
--- a/production/getEBuilderForDropDir.sh
+++ b/production/getEBuilderForDropDir.sh
@@ -8,64 +8,64 @@ EBUILDER_HASH=$2
if [[ -z "${BUILD_DIR}" ]]
then
- echo "BUILD_DIR not supplied, will assume current directory, for testing."
- BUILD_DIR=${PWD}
+ echo "BUILD_DIR not supplied, will assume current directory, for testing."
+ BUILD_DIR=${PWD}
else
- # normally will exist by now, but if not, we'll create it.
- if [[ ! -d "${BUILD_DIR}" ]]
- then
- echo "WARNING: BUILD_DIR did not exist, so created it: $BUILD_DIR."
- mkdir -p $BUILD_DIR
- fi
+ # normally will exist by now, but if not, we'll create it.
+ if [[ ! -d "${BUILD_DIR}" ]]
+ then
+ echo "WARNING: BUILD_DIR did not exist, so created it: $BUILD_DIR."
+ mkdir -p $BUILD_DIR
+ fi
fi
if [[ -z "${EBUILDER_HASH}" ]]
-then
- echo "EBUILDER HASH, BRANCH, or TAG was not supplied, assuming 'master'"
- EBUILDER_HASH=master
+then
+ echo "EBUILDER HASH, BRANCH, or TAG was not supplied, assuming 'master'"
+ EBUILDER_HASH=master
fi
EBUILDER=eclipse.platform.releng.aggregator
RC=0
-# don't clone, if already exists.
+# don't clone, if already exists.
if [[ ! -d ${BUILD_DIR}/${EBUILDER} ]]
then
- # Not sure 'REPO_AND_ACCESS' is defined in all possible scenerios, so we'll provide a default.
- # It is in main scenerios, but not sure about things like "re-running unit tests at a later time".
- # If directory doesn't exist yet, create it first, so we can assign proper access
- # permissions for later "clean up" routines.
- mkdir -p "${BUILD_DIR}/${EBUILDER}"
- chmod -c g+ws "${BUILD_DIR}/${EBUILDER}"
- git clone ${REPO_AND_ACCESS:-git://git.eclipse.org/gitroot}/platform/${EBUILDER} ${BUILD_DIR}/${EBUILDER}
- RC=$?
- if [[ $RC != 0 ]]
- then
- echo "[ERROR] Cloning EBUILDER returned non zero return code: $RC"
- exit $RC
- fi
-else
- echo "INFO: ebuilder directory found to exist. Not re-cloneing."
- echo "INFO: Found: ${BUILD_DIR}/${EBUILDER}"
- echo "INFO: But fetching to make sure up to date,"
- echo "INFO: before checking out specific HASH (which may make it detached)."
- pushd ${BUILD_DIR}/${EBUILDER}
- git fetch
- RC=$?
- if [[ $RC != 0 ]]
- then
- echo "[ERROR] Fetch EBUILDER returned non zero return code: $RC"
- exit $RC
- fi
- git checkout $EBUILDER_HASH
- RC=$?
- if [[ $RC != 0 ]]
- then
- echo "[ERROR] Checking out EBUILDER for $EBUILDER_HASH returned non zero return code: $RC"
- exit $RC
- fi
- popd
-fi
+ # Not sure 'REPO_AND_ACCESS' is defined in all possible scenerios, so we'll provide a default.
+ # It is in main scenerios, but not sure about things like "re-running unit tests at a later time".
+ # If directory doesn't exist yet, create it first, so we can assign proper access
+ # permissions for later "clean up" routines.
+ mkdir -p "${BUILD_DIR}/${EBUILDER}"
+ chmod -c g+ws "${BUILD_DIR}/${EBUILDER}"
+ git clone ${REPO_AND_ACCESS:-git://git.eclipse.org/gitroot}/platform/${EBUILDER} ${BUILD_DIR}/${EBUILDER}
+ RC=$?
+ if [[ $RC != 0 ]]
+ then
+ echo "[ERROR] Cloning EBUILDER returned non zero return code: $RC"
+ exit $RC
+ fi
+else
+ echo "INFO: ebuilder directory found to exist. Not re-cloneing."
+ echo "INFO: Found: ${BUILD_DIR}/${EBUILDER}"
+ echo "INFO: But fetching to make sure up to date,"
+ echo "INFO: before checking out specific HASH (which may make it detached)."
+ pushd ${BUILD_DIR}/${EBUILDER}
+ git fetch
+ RC=$?
+ if [[ $RC != 0 ]]
+ then
+ echo "[ERROR] Fetch EBUILDER returned non zero return code: $RC"
+ exit $RC
+ fi
+ git checkout $EBUILDER_HASH
+ RC=$?
+ if [[ $RC != 0 ]]
+ then
+ echo "[ERROR] Checking out EBUILDER for $EBUILDER_HASH returned non zero return code: $RC"
+ exit $RC
+ fi
+ popd
+fi
exit $RC

Back to the top