You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we recently noticed that Capsule fails to parse the java version string from java -version in the OpenJDK build from Azul Zulu.
The problem is that the version string contains as well the build date of the distribution, like openjdk version "10.0.2" 2018-07-17. The PAT_JAVA_VERSION_LINE in this file however does not allow anything after the last quotationmark and should rather read ".*?\"(.+?)\".*?" to make it work.
Read here for more information.
Is it possible to fix this in Capsule?
Best,
Jens
The text was updated successfully, but these errors were encountered:
Hi all,
we recently noticed that Capsule fails to parse the java version string from
java -version
in the OpenJDK build from Azul Zulu.The problem is that the version string contains as well the build date of the distribution, like
openjdk version "10.0.2" 2018-07-17
. ThePAT_JAVA_VERSION_LINE
in this file however does not allow anything after the last quotationmark and should rather read".*?\"(.+?)\".*?"
to make it work.Read here for more information.
Is it possible to fix this in Capsule?
Best,
Jens
The text was updated successfully, but these errors were encountered: