feat: address review comments

This commit is contained in:
Samuel Fernandes 2025-02-06 09:51:14 +00:00 committed by GitHub
parent 8bd9b370c8
commit 29f87f8357
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -216,7 +216,7 @@ public class OSInfo {
return "android-arm"; return "android-arm";
} }
if (isMusl()) { if (isX64Musl()) {
return "x86_64-musl"; return "x86_64-musl";
} }
@ -231,12 +231,11 @@ public class OSInfo {
return translateArchNameToFolderName(osArch); return translateArchNameToFolderName(osArch);
} }
private static boolean isMusl() { private static boolean isX64Musl() {
try { try {
return new File("/lib/ld-musl-x86_64.so.1").exists(); return new File("/lib/ld-musl-x86_64.so.1").exists();
} }
catch (Exception e) { catch (Exception e) {
System.err.println("Error while checking if ld-musl-x86_64.so.1 exists: " + e.getMessage());
return false; return false;
} }
} }