Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

Commit

Permalink
Clean up... again
Browse files Browse the repository at this point in the history
  • Loading branch information
SeraphJACK committed Jul 6, 2019
1 parent c497a81 commit 85007f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/cfpa/i18nupdatemod/I18nUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ static String getLocalRepositoryFolder(String path) throws IllegalArgumentExcept
String OS = System.getProperty("os.name").toLowerCase();
String folder;
if (path.equals("Auto")) {
if (OS.contains("mac") || OS.contains("nix") || OS.contains("nux") || OS.indexOf("aix") > 0) {
if (OS.contains("mac") || OS.contains("nix") || OS.contains("nux") || OS.contains("aix")) {
String userHome = System.getProperty("user.home");
if (userHome != null) {
folder = new File(userHome, ".I18nUpdateMod").getPath();
Expand Down

0 comments on commit 85007f6

Please sign in to comment.