File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 13
13
- Structured Logging: Logger called before ` SentrySDK.start ` becomes unusable (#5984 )
14
14
- Add masking for AVPlayerView (#5910 )
15
15
- Fix missing view hierachy when enabling ` attachScreenshot ` too (#5989 )
16
+ - Fix macOS's frameworks not following the versioned framework structure (#6049 )
16
17
17
18
### Improvements
18
19
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ echo "Excluded architectures: $EXCLUDED_ARCH"
34
34
# Find all framework directories and process their binaries
35
35
find " $XCARCHIVE_PATH " -name " *.framework" -type d | while read -r framework_path; do
36
36
binary_path=" $framework_path /$( basename " $framework_path " .framework) "
37
+ if [ -L " $binary_path " ]; then
38
+ echo " Resolving symlink at path: $binary_path "
39
+ binary_path=$( readlink -f " $binary_path " )
40
+ fi
37
41
if [ -f " $binary_path " ]; then
38
42
echo " Processing binary: $binary_path "
39
43
You can’t perform that action at this time.
0 commit comments