diff options
| author | OatmealDome <julian@oatmealdome.me> | 2024-07-31 13:31:41 -0400 |
|---|---|---|
| committer | OatmealDome <julian@oatmealdome.me> | 2024-08-01 22:06:51 -0400 |
| commit | cbbffce79aa7811a6bd9c00dc4ac955662ca0a17 (patch) | |
| tree | 8b27d4dcccfc1bc3ca96043536f3da19b6b02ca2 /Tools | |
| parent | 4883889e23ac784e004b4c80ab809920f11a69d3 (diff) | |
MacUpdater: Switch to mac-codesign script for code signing
Diffstat (limited to 'Tools')
| -rwxr-xr-x | Tools/mac-codesign.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/mac-codesign.sh b/Tools/mac-codesign.sh index 9fb330bc6c..2b26d461ee 100755 --- a/Tools/mac-codesign.sh +++ b/Tools/mac-codesign.sh @@ -52,7 +52,7 @@ if [ -d "$TARGET_PATH" ]; then # Newlines are the only valid separator character in find's output. IFS=$'\n' - for framework in $(find "$TARGET_PATH" -not -path "*/Helpers/*" -name '*.dylib' -or -name '*.framework'); do + for framework in $(find "$TARGET_PATH" -depth -not -path "*/Helpers/*" -name '*.dylib' -or -name '*.framework'); do sign "$framework" done |
