Commit e3580421 authored by Boris Bügling's avatar Boris Bügling

Remove user parameter from call to `share_scheme`.

The current user (`ENV['USER']`) is already the default.
parent edac9785
...@@ -615,7 +615,7 @@ module Pod ...@@ -615,7 +615,7 @@ module Pod
end.flatten end.flatten
development_pod_targets.each do |pod_target| development_pod_targets.each do |pod_target|
Xcodeproj::XCScheme.share_scheme(pods_project.path, pod_target.name, ENV['USER']) Xcodeproj::XCScheme.share_scheme(pods_project.path, pod_target.name)
end end
end end
......
...@@ -600,8 +600,7 @@ module Pod ...@@ -600,8 +600,7 @@ module Pod
Xcodeproj::XCScheme.expects(:share_scheme).with( Xcodeproj::XCScheme.expects(:share_scheme).with(
@installer.pods_project.path, @installer.pods_project.path,
'Pods-default-BananaLib', 'Pods-default-BananaLib')
ENV['USER'])
@installer.send(:share_development_pod_schemes) @installer.send(:share_development_pod_schemes)
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