Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ianopolous committed Mar 25, 2024
1 parent 086e189 commit 9bce4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native-build/InstallNativeImage.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private static String canonicaliseArchitecture(String arch) {
return "aarch64";
if (arch.startsWith("arm"))
return "arm";
if (arch.startsWith("amd64") || arch.startsWith("x86-64"))
if (arch.startsWith("x86_64"))
return "x64";
if (arch.startsWith("x86"))
return "386";
Expand Down

0 comments on commit 9bce4a7

Please sign in to comment.