mirror of
https://github.com/lwouis/alt-tab-macos.git
synced 2026-05-24 11:20:36 +00:00
12 lines
429 B
Bash
Executable File
12 lines
429 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# set to empty for debug builds
|
|
OTHER_CODE_SIGN_FLAGS="${OTHER_CODE_SIGN_FLAGS:-}"
|
|
|
|
set -exu
|
|
|
|
# codesign --deep is only 1 level deep. It misses Sparkle embedded app AutoUpdate
|
|
# this build phase script works around the issue
|
|
|
|
codesign --verbose --force --sign "$CODE_SIGN_IDENTITY" $OTHER_CODE_SIGN_FLAGS "${CODESIGNING_FOLDER_PATH}/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app"
|