mas/script/build
2024-02-18 08:22:24 -07:00

29 lines
519 B
Bash
Executable file

#!/bin/bash -e
#
# script/build
# mas
#
# Builds the Swift Package.
#
# Build for the host architecture by default.
ARCH=()
if [[ "$1" == '--universal' ]]; then
ARCH=(
--arch arm64
--arch x86_64
)
fi
# Disable the manifest cache on Xcode 12.5 and later.
CACHE=()
if [[ "$(swift build --help)" =~ manifest-cache ]]; then
CACHE=(--manifest-cache none)
fi
echo "==> 🏗️ Building mas ($(script/version))"
swift build \
--configuration release \
"${ARCH[@]}" \
--disable-sandbox \
"${CACHE[@]}"