Skip to content

Commit

Permalink
Recognize arch amd64
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuel-keller committed Jun 19, 2024
1 parent 0316553 commit 1b63a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/surrealdb/Loader.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ private static String get_path() {
if (name.contains("nix") || name.contains("nux")) {
if (arch.contains("aarch64")) {
return "linux_arm64";
} else if (arch.contains("x86_64")) {
} else if (arch.contains("x86_64") || arch.contains("amd64")) {
return "linux_64";
}
} else if (name.contains("win")) {
Expand Down

0 comments on commit 1b63a0c

Please sign in to comment.