mirror of
https://github.com/mas-cli/mas
synced 2024-11-29 06:50:39 +00:00
10 lines
233 B
Bash
Executable file
10 lines
233 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
echo "==> Compressing mas.xcarchive"
|
|
zip -r mas.xcarchive.zip mas.xcarchive
|
|
|
|
echo "==> Compressing binary"
|
|
zip -j mas-cli.zip mas.xcarchive/Products/usr/local/bin/mas
|
|
|
|
echo -n "==> SHA256: "
|
|
shasum -a 256 mas-cli.zip
|