Last active
November 12, 2024 11:21
-
-
Save exaland/303729d3b92f2770cae876b2b3f2ced6 to your computer and use it in GitHub Desktop.
Fix IOS Archive Compile Cordova App
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Workaround is to update all the generated ...-frameworks.sh files to add the -f flag to the call to readlink. In other words, need to replace: | |
source="$(readlink "${source}")" | |
with | |
source="$(readlink -f "${source}")" | |
Seems this is CocoaPods issue... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment