Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2019-06-07 09:55:03 +0000
committerSravan Kumar Lakkimsetti2019-06-07 09:55:03 +0000
commita8125db007728732bfb446a36e29720ab20432a5 (patch)
tree9e249b5936406439e6363fa2881b1d55aa1f5286 /production
parent1425b3672269d2f29ce184c7d7413dd967877c52 (diff)
downloadeclipse.platform.releng.aggregator-a8125db007728732bfb446a36e29720ab20432a5.tar.gz
eclipse.platform.releng.aggregator-a8125db007728732bfb446a36e29720ab20432a5.tar.xz
eclipse.platform.releng.aggregator-a8125db007728732bfb446a36e29720ab20432a5.zip
Bug 547921 - Hide 4.13 builds from the download page
Change-Id: I1ba5168cf1cc96c388989a534e0aae0fd40d6edf Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production')
-rwxr-xr-xproduction/build-functions.shsource7
1 files changed, 6 insertions, 1 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index 668da6fce..91b5502d6 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -1223,7 +1223,12 @@ fn-publish-eclipse ()
then
touch buildHidden
fi
-
+
+ if [[ "$BUILD_STREAM" == "4.13.0" ]]
+ then
+ touch buildHidden
+ fi
+
if [[ "$invisibleBuild" == "true" ]]
then
touch buildHidden

Back to the top