Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-08-12 05:55:12 +0000
committerDavid Williams2013-08-12 05:55:12 +0000
commitd213b88410e11d0aa39ae5d0df9f3310c544afc3 (patch)
tree199fb446761f988c2cca1ffa05838696defef4ad /production/build_eclipse_org.shsource
parentab27f7bdec68a343dd2d563dc0461647f26fc080 (diff)
downloadeclipse.platform.releng.aggregator-d213b88410e11d0aa39ae5d0df9f3310c544afc3.tar.gz
eclipse.platform.releng.aggregator-d213b88410e11d0aa39ae5d0df9f3310c544afc3.tar.xz
eclipse.platform.releng.aggregator-d213b88410e11d0aa39ae5d0df9f3310c544afc3.zip
Bug 375853 - Mac OSX 10.8 Mountain Lion Requires Signing for Gatekeeper
Now that 375853 is fixed, will "revert" change and no longer sign nightlies.
Diffstat (limited to 'production/build_eclipse_org.shsource')
-rw-r--r--production/build_eclipse_org.shsource14
1 files changed, 7 insertions, 7 deletions
diff --git a/production/build_eclipse_org.shsource b/production/build_eclipse_org.shsource
index e210d52e7..592201fe7 100644
--- a/production/build_eclipse_org.shsource
+++ b/production/build_eclipse_org.shsource
@@ -64,11 +64,11 @@ fi
GIT_PUSH=${GIT_PUSH:-'git push'}
# local, non build.eclipse.org builds (or, test builds) may need to override, and turn off signing.
-# otherwwise, we always sign if I or M build
-# TEMP: for bug 401141 and bug 388878
-#if [[ $BUILD_TYPE =~ [IM] ]]
-#then
+# otherwwise, we always sign if I or M builds, but not N builds
+#
+if [[ $BUILD_TYPE =~ [IM] ]]
+then
SIGNING=${SIGNING:-true}
-#else
-# SIGNING=${SIGNING:-false}
-#fi
+else
+ SIGNING=${SIGNING:-false}
+fi

Back to the top