-
-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: remove ios embed framework build phase duplication (#1558) #1595
Conversation
…y/sentry-unity into fix/ios-build-phase-duplication
Can't we just check for one of the things we do (i.e. adding the framework) and bail early instead of linking it twice? |
This is a completely separate point, so, for example, if the user builds, then opens the XCode project, and deletes the link task, and builds again, it won't be added. This is a low-probability case, and a clean build will fix it. So, do you want me to leave it as is, or do only one check for framework and linking as you have proposed? |
I think this is very much self-inflicted then and we're good. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Instructions and example for changelogPlease add an entry to Example: ## Unreleased
- remove ios embed framework build phase duplication (#1558) ([#1595](https://github.com/getsentry/sentry-unity/pull/1595)) If none of the above apply, you can opt out of this check by adding |
The linking phase is still added multiple times, but I could not find a way to check if it is already added.
But this does not break the build.