mirror of
https://github.com/bol-van/zapret2.git
synced 2026-03-14 06:13:09 +00:00
20 lines
349 B
Bash
Executable File
20 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
|
|
EXEDIR="$(dirname "$0")"
|
|
EXEDIR="$(cd "$EXEDIR"; pwd)"
|
|
|
|
. "$EXEDIR/common.inc"
|
|
|
|
BASEURL=https://github.com/bol-van/musl-cross/releases/download/latest
|
|
|
|
[ -d "$TOOLCHAINS" ] || mkdir -p "$TOOLCHAINS"
|
|
|
|
ask_target 1
|
|
|
|
pushd "$TOOLCHAINS"
|
|
for t in $TGT; do
|
|
[ -d "$t" ] && rm -r "$t"
|
|
curl -Lo - "${BASEURL}/${t}.tar.xz" | tar -Jx
|
|
done
|
|
popd
|