mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
13 lines
248 B
Bash
Executable file
13 lines
248 B
Bash
Executable file
#!/bin/bash -e
|
|
#
|
|
# script/archive
|
|
# mas
|
|
#
|
|
# Compresses artifacts so the can be archived more easily.
|
|
#
|
|
|
|
echo "==> 🗜️ Compressing mas"
|
|
zip .build/mas.zip .build/apple/Products/Release/mas
|
|
|
|
echo "==> 🔢 File Hash"
|
|
shasum -a 256 .build/mas.zip
|