diff options
| author | Jack Nagel | 2014-12-09 15:35:01 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-12-09 15:35:01 -0500 | 
| commit | 0b804a601d572e36a91907ee1c0db8fcd6d5a790 (patch) | |
| tree | 4db36d0bceccce08f1ba0d9641d351bd9f9fd972 | |
| parent | 5f5d031af05dec5973dfd989ee62c3da7e19f798 (diff) | |
| download | homebrew-0b804a601d572e36a91907ee1c0db8fcd6d5a790.tar.bz2 | |
qt5: fix init-repository quiet flag
| -rw-r--r-- | Library/Formula/qt5.rb | 2 | 
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  | 
