Skip to content

Commit 49899f0

Browse files
committed
fix path not getting recognized on mac
1 parent a3caa60 commit 49899f0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/java/com/nexia/installer/Main.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,12 @@ public static void main(String[] args) throws UnsupportedLookAndFeelException, C
3838

3939
os = OS.LINUX;
4040

41-
if(System.getProperty("os.name").startsWith("Windows")){
41+
if (System.getProperty("os.name").contains("win")) {
4242
os = OS.WINDOWS;
4343
System.setProperty("javax.net.ssl.trustStoreType", "WINDOWS-ROOT");
44-
}
45-
46-
if(System.getProperty("os.name").startsWith("mac"))
44+
} else if (System.getProperty("os.name").contains("mac")) {
4745
os = OS.MAC;
46+
}
4847

4948
icon = Toolkit.getDefaultToolkit().getImage(ClassLoader.getSystemClassLoader().getResource("icon.png"));
5049
InstallerGUI.load();

0 commit comments

Comments
 (0)