2025-06-04 08:20:08 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
# Download musl to a repository for `musl-math-sys`
|
|
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
|
2025-07-24 04:05:41 -05:00
|
|
|
url=https://github.com/kraj/musl.git
|
2025-06-04 08:20:08 +00:00
|
|
|
ref=c47ad25ea3b484e10326f933e927c0bc8cded3da
|
|
|
|
|
dst=crates/musl-math-sys/musl
|
|
|
|
|
|
|
|
|
|
if ! [ -d "$dst" ]; then
|
|
|
|
|
git clone "$url" "$dst" --single-branch --depth=1000
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
git -C "$dst" fetch "$url" --depth=1
|
|
|
|
|
git -C "$dst" checkout "$ref"
|