aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-12-09 15:35:01 -0500
committerJack Nagel2014-12-09 15:35:01 -0500
commit0b804a601d572e36a91907ee1c0db8fcd6d5a790 (patch)
tree4db36d0bceccce08f1ba0d9641d351bd9f9fd972
parent5f5d031af05dec5973dfd989ee62c3da7e19f798 (diff)
downloadhomebrew-0b804a601d572e36a91907ee1c0db8fcd6d5a790.tar.bz2
qt5: fix init-repository quiet flag
-rw-r--r--Library/Formula/qt5.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/qt5.rb b/Library/Formula/qt5.rb
index 50c44c41e..7a376c8dc 100644
--- a/Library/Formula/qt5.rb
+++ b/Library/Formula/qt5.rb
@@ -7,7 +7,7 @@ class Qt5HeadDownloadStrategy < GitDownloadStrategy
cached_location.cd { reset }
quiet_safe_system "git", "clone", cached_location, "."
ln_s cached_location, "qt"
- quiet_safe_system "./init-repository", "--mirror", "#{Dir.pwd}/"
+ quiet_safe_system "./init-repository", { :quiet_flag => "-q" }, "--mirror", "#{Dir.pwd}/"
rm "qt"
end
end