mirror of
https://github.com/Codeux-Software/Textual.git
synced 2026-06-16 13:24:32 +00:00
19 lines
548 B
Bash
Executable File
19 lines
548 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "Performing postprocessing on Sparkle framework"
|
|
|
|
cd "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
|
|
|
|
rm -rf Sparkle.framework/Versions/B/XPCServices/Downloader.xpc
|
|
|
|
codesign -f -s "$CODE_SIGN_IDENTITY" -o runtime Sparkle.framework/Versions/B/XPCServices/Installer.xpc
|
|
|
|
codesign -f -s "$CODE_SIGN_IDENTITY" -o runtime Sparkle.framework/Versions/B/Autoupdate
|
|
codesign -f -s "$CODE_SIGN_IDENTITY" -o runtime Sparkle.framework/Versions/B/Updater.app
|
|
|
|
codesign -f -s "$CODE_SIGN_IDENTITY" -o runtime Sparkle.framework
|
|
|
|
exit 0
|