forked from IQ.Lvbs/IQ.Pilot
10 lines
362 B
Bash
Executable File
10 lines
362 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
ditto -c -k --keepParent ./build/Release/TinyGPU.app ./build/Release/TinyGPU.zip
|
|
xcrun notarytool submit ./build/Release/TinyGPU.zip --keychain-profile "hgwJFhdheiIEy82nDN" --wait
|
|
|
|
rm ./build/Release/TinyGPU.zip
|
|
xcrun stapler staple ./build/Release/TinyGPU.app
|
|
ditto -c -k --keepParent ./build/Release/TinyGPU.app ./build/Release/TinyGPU.zip
|