diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d1f136933..106bf4012c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ##### Bug Fixes -* None. +* Xcode 14.3 fix: Pass the -f option when resolving the path to the symlinked source. + [Chris Vasselli](https://github.com/chrisvasselli) + [#11828](https://github.com/CocoaPods/CocoaPods/pull/11828) + [#11808](https://github.com/CocoaPods/CocoaPods/issues/11808) ## 1.12.0 (2023-02-27) diff --git a/lib/cocoapods/generator/embed_frameworks_script.rb b/lib/cocoapods/generator/embed_frameworks_script.rb index d1772ebb08..e4956eebde 100644 --- a/lib/cocoapods/generator/embed_frameworks_script.rb +++ b/lib/cocoapods/generator/embed_frameworks_script.rb @@ -83,7 +83,7 @@ def script if [ -L "${source}" ]; then echo "Symlinked..." - source="$(readlink "${source}")" + source="$(readlink -f "${source}")" fi if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then diff --git a/spec/cocoapods-integration-specs b/spec/cocoapods-integration-specs index 26da9cda43..300deded4a 160000 --- a/spec/cocoapods-integration-specs +++ b/spec/cocoapods-integration-specs @@ -1 +1 @@ -Subproject commit 26da9cda43190cd2210c6ff68f0a29a754f7a669 +Subproject commit 300deded4af720746a92875e7f83f7ecee65bcd2