mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
e1dbc653e5
Fixes #363
15 lines
246 B
Bash
Executable file
15 lines
246 B
Bash
Executable file
#!/bin/bash -e
|
|
#
|
|
# script/build
|
|
# mas
|
|
#
|
|
# Builds the Swift Package.
|
|
#
|
|
|
|
echo "==> 🏗️ Building mas ($(script/version))"
|
|
swift build \
|
|
--configuration release \
|
|
--arch arm64 \
|
|
--arch x86_64 \
|
|
--disable-sandbox \
|
|
--manifest-cache none
|