Commit 8a812059 authored by Ben Asher's avatar Ben Asher

Removed remaining ensure_in_repo\!

parent 51defa9b
...@@ -103,9 +103,8 @@ module Pod ...@@ -103,9 +103,8 @@ module Pod
end end
def update_git_repo(show_output = false) def update_git_repo(show_output = false)
ensure_in_repo!
Config.instance.with_changes(:verbose => show_output) do Config.instance.with_changes(:verbose => show_output) do
git!(%w(pull --ff-only)) git!(['-C', repo, 'pull', '--ff-only'])
end end
rescue rescue
UI.warn 'CocoaPods was not able to update the ' \ UI.warn 'CocoaPods was not able to update the ' \
...@@ -117,10 +116,9 @@ module Pod ...@@ -117,10 +116,9 @@ module Pod
class MasterSource class MasterSource
def update_git_repo(show_output = false) def update_git_repo(show_output = false)
ensure_in_repo!
if repo.join('.git', 'shallow').file? if repo.join('.git', 'shallow').file?
UI.info "Performing a deep fetch of the `#{name}` specs repo to improve future performance" do UI.info "Performing a deep fetch of the `#{name}` specs repo to improve future performance" do
git!(%w(fetch --unshallow)) git!(['-C', repo, 'pull', 'fetch', '--unshallow'])
end end
end end
super super
......
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