mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 20:48:30 +00:00
18 lines
248 B
Text
18 lines
248 B
Text
|
#!/bin/bash -e
|
||
|
#
|
||
|
# script/build_artifacts
|
||
|
# mas
|
||
|
#
|
||
|
# Runs all related scripts for generating all artifacts.
|
||
|
#
|
||
|
|
||
|
VERSION=$(script/version)
|
||
|
|
||
|
echo "Building mas $VERSION artifacts"
|
||
|
|
||
|
script/clean
|
||
|
script/build
|
||
|
script/archive
|
||
|
script/install
|
||
|
script/package
|