Fix os name for linux

This commit is contained in:
Manfred Karrer 2014-11-14 14:02:26 +01:00
parent c8ece38889
commit 24c75a884e

View File

@ -61,7 +61,7 @@ public class Utilities {
}
public static boolean isLinux() {
return getOSName().contains("darwin");
return getOSName().contains("linux");
}
private static String getOSName() {