mirror of
https://github.com/mas-cli/mas
synced 2024-11-25 13:00:23 +00:00
13 lines
212 B
Bash
Executable file
13 lines
212 B
Bash
Executable file
#!/bin/bash -e
|
|
#
|
|
# script/build
|
|
# mas
|
|
#
|
|
# Builds the Swift Package.
|
|
#
|
|
|
|
script/clean
|
|
script/lint
|
|
|
|
echo "==> 🏗️ Building mas ($(script/version))"
|
|
swift build --configuration release --arch arm64 --arch x86_64
|