Skip to content

Commit 4192231

Browse files
committed
[GR-68862] Github: [Native Image] [Windows] Required environment variable names use case-sensitive compare on Windows
PullRequest: graal/21897
2 parents ea47f35 + f1db53c commit 4192231

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/util/EnvVariableUtils.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ public boolean isKeyRequired() {
8282
}
8383

8484
public static boolean isKeyRequired(String key) {
85-
mapKey(key);
86-
return isKeyRequiredCondition(key);
85+
return isKeyRequiredCondition(mapKey(key));
8786
}
8887

8988
private static String mapKey(String key) {

0 commit comments

Comments
 (0)