Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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