You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 2, 2018. It is now read-only.
This will allow to edit the source code of the project and make a pull request from your own project. (When using swift_seedname_prefix the names of the files are changed and pull request from the project is not possible, I think)
Thanks!
The text was updated successfully, but these errors were encountered:
You have two third party frameworks: A and B.
A and B has one common file name: commonFileName.swift
So in order to make them work, you set swift_seedname_prefix and the common files now has different names: A_commonFileName.swift and B_commonFileName.swift
If you now want to modify B_commonFileName.swift and make a pullRequest, it is not possible from your project because all the files in the framework changed to B_*.swift.
If swift_seedname_prefix could be applied per-framework you could:
Use swift_seedname_prefix with framework A, so the common file will be named A_commonFileName.swift
NOT use swift_seedname_prefix with framework B, so the common file will be named commonFileName.swift
And now you could modify commonFileName.swift in framework B and make a pullRequest from your own project.
Anyway, reading it now seems like too much work for such a feature, I was asking so maybe it was already implemented.
This will allow to edit the source code of the project and make a pull request from your own project. (When using swift_seedname_prefix the names of the files are changed and pull request from the project is not possible, I think)
Thanks!
The text was updated successfully, but these errors were encountered: