Commit 60bd7375 authored by Samuel Giddins's avatar Samuel Giddins

[Repo::Update] Allow --silent to work when updating a specs repo

parent c60a32aa
...@@ -23,6 +23,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -23,6 +23,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
`Pod::Config.instance.sources_manager` in some manner as soon as possible. `Pod::Config.instance.sources_manager` in some manner as soon as possible.
[Samuel Giddins](https://github.com/segiddins) [Samuel Giddins](https://github.com/segiddins)
* Running `pod repo update --silent` will now properly silence git output while
updating the repository.
[Samuel Giddins](https://github.com/segiddins)
## 1.0.0.beta.7 (2016-04-15) ## 1.0.0.beta.7 (2016-04-15)
......
...@@ -19,7 +19,8 @@ module Pod ...@@ -19,7 +19,8 @@ module Pod
end end
def run def run
config.sources_manager.update(@name, true) show_output = !config.silent?
config.sources_manager.update(@name, show_output)
end end
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