Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Eberle2017-10-24 10:54:06 +0000
committerStephan Eberle2017-10-24 10:54:06 +0000
commit03c00e36a4d8eb9eb45bf8b6d6930fdcd933f7c9 (patch)
treea86d1467ab00752e65445d33a18ee579a232b028
parent0bd029ab3a3acd84ce460d1b6634732743839831 (diff)
downloadorg.eclipse.sphinx-03c00e36a4d8eb9eb45bf8b6d6930fdcd933f7c9.tar.gz
org.eclipse.sphinx-03c00e36a4d8eb9eb45bf8b6d6930fdcd933f7c9.tar.xz
org.eclipse.sphinx-03c00e36a4d8eb9eb45bf8b6d6930fdcd933f7c9.zip
Reverted "Fixed invalid presence condition for MERGE_UPDATE_SITE
variable in publish build script"
-rw-r--r--releng/org.eclipse.sphinx.releng.builds/publish.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/releng/org.eclipse.sphinx.releng.builds/publish.sh b/releng/org.eclipse.sphinx.releng.builds/publish.sh
index f8a74c9a..fffb51a5 100644
--- a/releng/org.eclipse.sphinx.releng.builds/publish.sh
+++ b/releng/org.eclipse.sphinx.releng.builds/publish.sh
@@ -197,7 +197,7 @@ echo "Copying $localUpdateSiteArchiveLocation to $targetDownloadsLocation"
mkdir -p $targetDownloadsLocation
cp $localUpdateSiteArchiveLocation $targetDownloadsLocation
-if [ -n $MERGE_UPDATE_SITE ] && [ -f "$targetUpdateSiteLocation/content.*" ];
+if [ $MERGE_UPDATE_SITE != "false" ] && [ -f "$targetUpdateSiteLocation/content.*" ];
then
echo "------------------------------------------------------------------------"
echo "Merging project update site into build update site"

Back to the top