30 lines
848 B
Bash
30 lines
848 B
Bash
|
#!/bin/bash
|
||
|
# Download the nightly builds of Tox for iOS, iPhone simulator, and macOS.
|
||
|
|
||
|
set -eux -o pipefail
|
||
|
|
||
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
||
|
cd "$SCRIPT_DIR"
|
||
|
|
||
|
for arch in arm64 armv7 armv7s; do
|
||
|
if [ ! -d "toxcore-ios-$arch" ]; then
|
||
|
tar -zxf \
|
||
|
<(curl -L "https://github.com/TokTok/c-toxcore/releases/download/nightly/toxcore-nightly-ios-$arch.tar.gz")
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
for arch in arm64 x86_64; do
|
||
|
if [ ! -d "toxcore-iphonesimulator-$arch" ]; then
|
||
|
tar -zxf \
|
||
|
<(curl -L "https://github.com/TokTok/c-toxcore/releases/download/nightly/toxcore-nightly-iphonesimulator-$arch.tar.gz")
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
for arch in arm64 x86_64; do
|
||
|
if [ ! -d "toxcore-macos-$arch" ]; then
|
||
|
tar -zxf \
|
||
|
<(curl -L "https://github.com/TokTok/c-toxcore/releases/download/nightly/toxcore-nightly-macos-$arch.tar.gz")
|
||
|
fi
|
||
|
done
|