We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1130967 commit 6d5cdb5Copy full SHA for 6d5cdb5
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/PwdModuleBuiltins.java
@@ -76,9 +76,9 @@ Object doGetpwuid(int uid) {
76
String gecos = "";
77
String homeDir = System.getProperty("user.home");
78
String shell = "";
79
- if (osName.contains("win")) {
+ if (osName.contains("Windows")) {
80
// we keep base configs for now, could be changed in future, not tested on windows
81
- } else if (osName.contains("nix")) {
+ } else if (osName.contains("Linux")) {
82
UnixSystem unix = new UnixSystem();
83
gid = unix.getGid();
84
shell = "/bin/sh";
0 commit comments