Skip to content

Commit b4916b7

Browse files
[GR-71013] Fix endsWith() to the correct version endswith() in mx_sdk_vm_impl.py
PullRequest: graal/22462
2 parents 2906b19 + 21e2b5c commit b4916b7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

graal-common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"README": "This file contains definitions that are useful for the jsonnet CI files of the graal and graal-enterprise repositories.",
33
"ci": {
4-
"overlay": "aecf4e4409bde4bfcc1009e5b8c895e150500dfa"
4+
"overlay": "e0a912efe8855b9bb7c55c1f6a438dca93cd29c4"
55
}
66
}

sdk/OWNERS.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ any = [
88
files = ["mx_sdk_vm*.py"]
99
any = [
1010
11-
"benoit.daloze@oracle.com",
11+
"danilo.ansaloni@oracle.com",
1212
]

sdk/mx.sdk/mx_sdk_vm_impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2994,7 +2994,7 @@ def base_jdk_version_info():
29942994
if version_type == 'vendor':
29952995
graalvm_suffix = ''
29962996
if java_pre:
2997-
graalvm_suffix += '.' if graalvm_version.endsWith('dev') else '-'
2997+
graalvm_suffix += '.' if graalvm_version.endswith('dev') else '-'
29982998
graalvm_suffix += java_pre
29992999
else:
30003000
assert version_type == 'base-dir', version_type

0 commit comments

Comments
 (0)