Skip to content

Commit

Permalink
Use libzim 9.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kelson42 committed Dec 22, 2024
1 parent f04a5c0 commit 7a0b061
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
LIBZIM_VERSION=9.2.1
LIBZIM_VERSION=9.2.3-2
4 changes: 2 additions & 2 deletions download-libzim.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ if (!isAvailableArch) {
}

let osPrefix = isMacOS ? "macos" : "linux";
let osArch = isLinux ? "x86_64-bionic" : "x86_64";
let osArch = isLinux ? "x86_64" : "x86_64";

if (rawArch !== "x64") {
if (isLinux) {
osArch = rawArch === "arm64" ? "aarch64-bionic" : "armhf";
osArch = rawArch === "arm64" ? "aarch64-manylinux" : "armhf";
} else {
osArch = rawArch;
}
Expand Down

0 comments on commit 7a0b061

Please sign in to comment.