We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65115e0 commit d552816Copy full SHA for d552816
ci/osx-deps
@@ -25,7 +25,7 @@ cached_download() {
25
shasum=$3
26
path="$HOME/Downloads/$file"
27
if [[ ! -f "$path"
28
- || "$(shasum -a 256 "$HOME/Downloads/$file" | awk '{print $1}')" != "$shasum" ]]
+ || "$(shasum -a 256 "$path" | awk '{print $1}')" != "$shasum" ]]
29
then
30
curl -L -o "$path" "$url"
31
fi
@@ -47,7 +47,7 @@ cached_download ccache-3.7.11.tar.xz \
47
tar xf "$HOME"/Downloads/ccache-3.7.11.tar.xz
48
pushd ccache-3.7.11
49
./configure --prefix=/usr/local
50
-make
+make -j2
51
make install
52
popd
53
for compiler in clang clang++ cc gcc c++ g++; do
0 commit comments