From f475767c2bedf4c2adf6e5f71c84cbccbe3f68e8 Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Thu, 14 May 2020 05:47:11 -0400 Subject: [PATCH] Rename darwin releases to macos --- ci/lib.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/lib.sh b/ci/lib.sh index 7c348d6f..3772e139 100755 --- a/ci/lib.sh +++ b/ci/lib.sh @@ -27,6 +27,8 @@ os() { if echo "$ldd_output" | grep -iq musl; then os="alpine" fi + elif [[ $os == "darwin" ]]; then + os="macos" fi echo "$os" }