Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcje-production/mbscripts/mb600_promoteEclipse.sh10
-rwxr-xr-xcje-production/mbscripts/mb610_promoteEquinox.sh10
2 files changed, 10 insertions, 10 deletions
diff --git a/cje-production/mbscripts/mb600_promoteEclipse.sh b/cje-production/mbscripts/mb600_promoteEclipse.sh
index 7e5004b54..12bbe4228 100755
--- a/cje-production/mbscripts/mb600_promoteEclipse.sh
+++ b/cje-production/mbscripts/mb600_promoteEclipse.sh
@@ -24,12 +24,12 @@ source $CJE_ROOT/scripts/common-functions.shsource
source $1
pushd $CJE_ROOT/$DROP_DIR/
-epDownloadDir=/home/data/httpd/download.eclipse.org/eclipse
-dropsPath=${epDownloadDir}/downloads/drops4
-scp -r ${BUILD_ID} genie.releng@projects-storage.eclipse.org:${dropsPath}/.
if [[ $COMPARATOR_ERRORS == "true" ]]
then
- ssh genie.releng@projects-storage.eclipse.org touch ${dropsPath}/${BUILD_ID}/buildUnstable
- ssh genie.releng@projects-storage.eclipse.org echo "<p>This build has been marked unstable due to <a href='https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/buildlogs/comparatorlogs/buildtimeComparatorUnanticipated.log.txt'>unanticipated comparator errors</a></p>">> ${dropsPath}/${BUILD_ID}/buildUnstable
+ touch ${BUILD_ID}/buildUnstable
+ echo "<p>This build has been marked unstable due to <a href='https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/buildlogs/comparatorlogs/buildtimeComparatorUnanticipated.log.txt'>unanticipated comparator errors</a></p>">> ${BUILD_ID}/buildUnstable
fi
+epDownloadDir=/home/data/httpd/download.eclipse.org/eclipse
+dropsPath=${epDownloadDir}/downloads/drops4
+scp -r ${BUILD_ID} genie.releng@projects-storage.eclipse.org:${dropsPath}/.
popd
diff --git a/cje-production/mbscripts/mb610_promoteEquinox.sh b/cje-production/mbscripts/mb610_promoteEquinox.sh
index 2e10b9110..bd8c72241 100755
--- a/cje-production/mbscripts/mb610_promoteEquinox.sh
+++ b/cje-production/mbscripts/mb610_promoteEquinox.sh
@@ -24,12 +24,12 @@ source $CJE_ROOT/scripts/common-functions.shsource
source $1
pushd $CJE_ROOT/$EQUINOX_DROP_DIR
-epDownloadDir=/home/data/httpd/download.eclipse.org/equinox
-dropsPath=${epDownloadDir}/drops
-scp -r ${BUILD_ID} genie.releng@projects-storage.eclipse.org:${dropsPath}/.
if [[ $COMPARATOR_ERRORS == "true" ]]
then
- ssh genie.releng@projects-storage.eclipse.org touch ${dropsPath}/${BUILD_ID}/buildUnstable
- ssh genie.releng@projects-storage.eclipse.org echo "<p>This build has been marked unstable due to <a href='https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/buildlogs/comparatorlogs/buildtimeComparatorUnanticipated.log.txt'>unanticipated comparator errors</a></p>">> ${dropsPath}/${BUILD_ID}/buildUnstable
+ touch ${BUILD_ID}/buildUnstable
+ echo "<p>This build has been marked unstable due to <a href='https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/buildlogs/comparatorlogs/buildtimeComparatorUnanticipated.log.txt'>unanticipated comparator errors</a></p>">> ${BUILD_ID}/buildUnstable
fi
+epDownloadDir=/home/data/httpd/download.eclipse.org/equinox
+dropsPath=${epDownloadDir}/drops
+scp -r ${BUILD_ID} genie.releng@projects-storage.eclipse.org:${dropsPath}/.
popd

Back to the top