mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
fix
This commit is contained in:
parent
6ba9d10a4a
commit
e8c0ee631c
1 changed files with 3 additions and 6 deletions
|
|
@ -86,9 +86,6 @@ sign() {
|
|||
# We don't even have to codesign - apparently create-dmg does it! codesign --deep --options runtime --sign "${CODESIGN_IDENTITY}" "${SIGNED_DMG}" create
|
||||
codesign --verify --verbose=4 "${SIGNED_DMG}"
|
||||
|
||||
echo "-------------------- 2c. zip .app --------------------"
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -124,10 +121,10 @@ notarize(){
|
|||
|
||||
|
||||
updater(){
|
||||
cd "${SIGNED_DOTAPP_DIR}"
|
||||
echo "Zipping updater here..."
|
||||
ZIP_NAME="Void-Updater-darwin-${ARCH}.zip"
|
||||
zip -r -q "${ZIP_NAME}" "${SIGNED_DOTAPP}"
|
||||
mv "${ZIP_NAME}" "${SIGNED_DOTAPP_DIR}"
|
||||
VOIDAPP=$(basename $SIGNED_DOTAPP)
|
||||
zip -r -q "Void-Updater-darwin-${ARCH}.zip" "${VOIDAPP}"
|
||||
|
||||
echo "Done!"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue