From 914b50851fcf986d20788d55e2c62710d4cfec61 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 16 Oct 2024 06:15:12 -0500 Subject: [PATCH] fix linux arm64 --- .evergreen/mongosh-dl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.evergreen/mongosh-dl.py b/.evergreen/mongosh-dl.py index a3d426bc..62c58f2d 100644 --- a/.evergreen/mongosh-dl.py +++ b/.evergreen/mongosh-dl.py @@ -62,6 +62,8 @@ def _download(out_dir: Path, version: str, target: str, version = _get_latest_version() if arch == "x86_64": arch = "x64" + elif arch == "aarch64": + arch = "arm64" if target == "linux": suffix = ".tgz" else: