From c2e8c4676edbd7cc4bd9b1f7da1bd6f34c771480 Mon Sep 17 00:00:00 2001 From: klzgrad Date: Thu, 4 Mar 2021 01:09:51 +0800 Subject: [PATCH] Revert sccache to 0.2.12 0.2.15 does not work. --- src/get-clang.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/get-clang.sh b/src/get-clang.sh index 69a526666d..f18223ef99 100755 --- a/src/get-clang.sh +++ b/src/get-clang.sh @@ -82,7 +82,7 @@ fi # sccache (Windows) if [ "$ARCH" = Windows -a ! -f ~/.cargo/bin/sccache.exe ]; then - sccache_url="https://github.com/mozilla/sccache/releases/download/v0.2.15/sccache-v0.2.15-x86_64-pc-windows-msvc.tar.gz" + sccache_url="https://github.com/mozilla/sccache/releases/download/0.2.12/sccache-0.2.12-x86_64-pc-windows-msvc.tar.gz" mkdir -p ~/.cargo/bin curl -L "$sccache_url" | tar xzf - --strip=1 -C ~/.cargo/bin fi