Skip to content

Instantly share code, notes, and snippets.

@exaland
Last active November 12, 2024 11:21
Show Gist options
  • Save exaland/303729d3b92f2770cae876b2b3f2ced6 to your computer and use it in GitHub Desktop.
Save exaland/303729d3b92f2770cae876b2b3f2ced6 to your computer and use it in GitHub Desktop.
Fix IOS Archive Compile Cordova App
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