Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-05-31 12:36:02 +0000
committerSravan Kumar Lakkimsetti2018-05-31 12:36:02 +0000
commit97887bddf0ca429277dd21e15d8d9d1c8968e5eb (patch)
tree5a112954524d850e489074d752d7dcc608848925 /production/sdk
parent0ee95e20e1303b633e1209229d11483f84a41961 (diff)
downloadeclipse.platform.releng.aggregator-97887bddf0ca429277dd21e15d8d9d1c8968e5eb.tar.gz
eclipse.platform.releng.aggregator-97887bddf0ca429277dd21e15d8d9d1c8968e5eb.tar.xz
eclipse.platform.releng.aggregator-97887bddf0ca429277dd21e15d8d9d1c8968e5eb.zip
Bug 535387 - Hide 4.9 builds from the download page
Change-Id: I6582e394c98f04d656ca89aefbf816b810481d2a Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production/sdk')
-rwxr-xr-xproduction/sdk/bootstrap/mb4I_hudson.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/production/sdk/bootstrap/mb4I_hudson.sh b/production/sdk/bootstrap/mb4I_hudson.sh
index ffcc94ed0..43ade1b65 100755
--- a/production/sdk/bootstrap/mb4I_hudson.sh
+++ b/production/sdk/bootstrap/mb4I_hudson.sh
@@ -54,7 +54,7 @@ echo "locale charmap: $(locale charmap)"
# all optional
# normally, when ran from crobjob, none should be specified
-while getopts 'ht' OPTION
+while getopts 'hti' OPTION
do
case $OPTION in
h) usage
@@ -62,6 +62,8 @@ do
;;
t) export testbuildonly=true
;;
+ i) export invisibleBuild=true
+ ;;
esac
done

Back to the top