This is an automated email from the ASF dual-hosted git repository.
lkishalmi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git
The following commit(s) were added to refs/heads/master by this push:
new cbfcbbc Fix the invalid java version pattern
cbfcbbc is described below
commit cbfcbbc9f08b868c64b801e50fe10e0f7dde4541
Author: Junichi Yamamoto <[email protected]>
AuthorDate: Thu Oct 18 10:18:54 2018 +0900
Fix the invalid java version pattern
---
nbbuild/build.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nbbuild/build.xml b/nbbuild/build.xml
index badaf5b..de0155b 100644
--- a/nbbuild/build.xml
+++ b/nbbuild/build.xml
@@ -40,7 +40,7 @@
depends="-jdk-init,-load-build-properties">
<fail message="You need to run on JDK 8+ to build NetBeans;
java.home=${java.home}">
<condition>
- <matches pattern="1\.[01234567].*" string="${java.version}"/>
+ <matches pattern="^1\.[01234567].*" string="${java.version}"/>
</condition>
</fail>
<fail message="You need JDK 8+ to build NetBeans; nbjdk.home=${nbjdk.home}
java.home=${java.home}">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists