Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2019-09-09 05:08:54 +0000
committerNiraj Modi2019-09-09 07:43:34 +0000
commit100bfbac3210c67fa4832369379a0050c3505819 (patch)
treedd9a5361d4dadd1a9f364b670830158f3684546e
parent792c4e46e8cbee1d1c8fd3b5d79e7dc2afd49898 (diff)
downloadeclipse.platform.releng.aggregator-100bfbac3210c67fa4832369379a0050c3505819.tar.gz
eclipse.platform.releng.aggregator-100bfbac3210c67fa4832369379a0050c3505819.tar.xz
eclipse.platform.releng.aggregator-100bfbac3210c67fa4832369379a0050c3505819.zip
Bug 550771 - Hide 4.14 builds from the download page
Change-Id: I8ba4810d0c73305bbeeb7a1ac2275706f76ca227 Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com>
-rwxr-xr-xproduction/build-functions.shsource5
1 files changed, 4 insertions, 1 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index 9e1deac53..4c59a643b 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -1223,7 +1223,10 @@ fn-publish-eclipse ()
then
touch buildHidden
fi
-
+ if [[ "$BUILD_STREAM" == "4.14.0" ]]
+ then
+ touch buildHidden
+ fi
if [[ "$invisibleBuild" == "true" ]]
then
touch buildHidden

Back to the top