mas/script/build
2021-05-07 11:33:39 -07:00

26 lines
493 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}