mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 12:38:30 +00:00
16 lines
233 B
Bash
Executable file
16 lines
233 B
Bash
Executable file
#!/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/package
|