Commit b7ef2788 authored by Samuel E. Giddins's avatar Samuel E. Giddins

Merge pull request #4811 from CocoaPods/seg-share-schemes-after-uuids

[Installer] Recreate schemes after generating deterministic UUIDs
parents ec04f5b8 843ca1ca
...@@ -29,6 +29,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -29,6 +29,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
resource bundle targets. resource bundle targets.
[Andy Rifken](https://github.com/arifken) [Andy Rifken](https://github.com/arifken)
* Share user schemes of `Pods.xcodeproj` after generating deterministic UUIDS.
[Samuel Giddins](https://github.com/segiddins)
## 1.0.0.beta.2 (2016-01-05) ## 1.0.0.beta.2 (2016-01-05)
......
...@@ -711,10 +711,10 @@ module Pod ...@@ -711,10 +711,10 @@ module Pod
pods_project.pods.remove_from_project if pods_project.pods.empty? pods_project.pods.remove_from_project if pods_project.pods.empty?
pods_project.development_pods.remove_from_project if pods_project.development_pods.empty? pods_project.development_pods.remove_from_project if pods_project.development_pods.empty?
pods_project.sort(:groups_position => :below) pods_project.sort(:groups_position => :below)
pods_project.recreate_user_schemes(false)
if installation_options.deterministic_uuids? if installation_options.deterministic_uuids?
UI.message('- Generating deterministic UUIDs') { pods_project.predictabilize_uuids } UI.message('- Generating deterministic UUIDs') { pods_project.predictabilize_uuids }
end end
pods_project.recreate_user_schemes(false)
pods_project.save pods_project.save
end end
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment