From 43c41d76bac3c95cbfe2f1c2dc984ccd03cdeb2b Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 4 Dec 2021 17:03:03 +1000 Subject: [PATCH] fix cargo-env on darwin-aarch64 --- scripts/cargo-env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cargo-env b/scripts/cargo-env index 5150155fe..b987d169a 100755 --- a/scripts/cargo-env +++ b/scripts/cargo-env @@ -13,7 +13,7 @@ if [[ "$OSTYPE" == "darwin"* ]]; then if [ "$(arch)" == "i386" ]; then export PATH="$BAZEL_EXTERNAL/rust_darwin_x86_64/bin:$PATH" else - export PATH="$BAZEL_EXTERNAL/rust_darwin_arm64/bin:$PATH" + export PATH="$BAZEL_EXTERNAL/rust_darwin_aarch64/bin:$PATH" fi else if [ "$(arch)" == "aarch64" ]; then