Skip to content

Commit

Permalink
Tidied up architecture check
Browse files Browse the repository at this point in the history
  • Loading branch information
kolovos committed Nov 18, 2024
1 parent a5a4357 commit ce59389
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,7 @@ public static String getLibraryPathFromRoot(String matlabPath) {
switch (OperatingSystem.getOSFamily()) {
case WINDOWS: osBin = "win64";
break;
case MAC: {
if (OperatingSystem.isARM64()) {
osBin = "maca64";
}
else {
osBin = "maci64";
}
}
case MAC: osBin = OperatingSystem.isARM64() ? "maca64" : "maci64";
break;
default: osBin = "glnxa64";
break;
Expand Down

0 comments on commit ce59389

Please sign in to comment.