Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-08-02 09:00:11 +0000
committerSravan Kumar Lakkimsetti2017-08-02 09:00:11 +0000
commit12c09498fd8f9eed02d5ba1f143cbe30a3acbb47 (patch)
treeed5007b482ab6f3d831c31544763ea521d848884 /production/bootstrapVariables.shsource
parent3b3b0c1bb6f3950278bc83bca5b273f6dc18aedd (diff)
downloadeclipse.platform.releng.aggregator-12c09498fd8f9eed02d5ba1f143cbe30a3acbb47.tar.gz
eclipse.platform.releng.aggregator-12c09498fd8f9eed02d5ba1f143cbe30a3acbb47.tar.xz
eclipse.platform.releng.aggregator-12c09498fd8f9eed02d5ba1f143cbe30a3acbb47.zip
Bug 518239 - [JUnit 5] Feature patch for JUnit 5 support on 4.7
Change-Id: Ic3bb4bc153359803cf0bc67bfac3a6d64b84621e Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production/bootstrapVariables.shsource')
-rw-r--r--production/bootstrapVariables.shsource4
1 files changed, 2 insertions, 2 deletions
diff --git a/production/bootstrapVariables.shsource b/production/bootstrapVariables.shsource
index 937a9f639..62066a2e1 100644
--- a/production/bootstrapVariables.shsource
+++ b/production/bootstrapVariables.shsource
@@ -68,7 +68,7 @@ fn-git-dir ()
# USAGE: fn-build-id BUILD_TYPE
-# BUILD_TYPE: I, M, N, X, Y, P
+# BUILD_TYPE: I, M, N, X, Y, P, U
fn-build-id ()
{
@@ -145,7 +145,7 @@ fn-build-dir ()
# if we ever do, it is a 3 part id, not 2 part.
# Either of the two "digits" forms should work.
#buildIdPattern="^[MNIPY][0-9]{8}-[0-9]{4}$"
-buildIdPattern="^[MNIPY][[:digit:]]{8}-[[:digit:]]{4}$"
+buildIdPattern="^[MNIPYU][[:digit:]]{8}-[[:digit:]]{4}$"
if [[ -z "${BUILD_ID}" || ! "${BUILD_ID}" =~ $buildIdPattern ]]
then

Back to the top