jan/.github/scripts/auto-sign.sh
2023-10-24 20:49:51 +07:00

5 lines
154 B
Bash
Executable File

#!/bin/bash
APP_PATH=${APP_PATH}
DEVELOPER_ID=${DEVELOPER_ID}
find $APP_PATH -type f -perm +111 -exec codesign -s "$DEVELOPER_ID" --options=runtime {} \;