diff options
| author | Alyssa Ross | 2016-12-30 17:45:37 +0000 | 
|---|---|---|
| committer | Alyssa Ross | 2016-12-30 17:45:37 +0000 | 
| commit | bbf53ad4ab6afccb739828b5c7b5bcf905fd5160 (patch) | |
| tree | 79df9d40f80633976c1604c9a85b13f82c81a43e /Library/Homebrew/cmd/uninstall.rb | |
| parent | ea3a41e213f9462bc62099c607986356428dd55d (diff) | |
| download | brew-bbf53ad4ab6afccb739828b5c7b5bcf905fd5160.tar.bz2 | |
uninstall: don't comma-seperate kegs in example
The example command given in the dependency errors/warnings previously
comma-seperated the kegs, which was incorrect syntax. This fixes that.
Diffstat (limited to 'Library/Homebrew/cmd/uninstall.rb')
| -rw-r--r-- | Library/Homebrew/cmd/uninstall.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/uninstall.rb b/Library/Homebrew/cmd/uninstall.rb index daae791a3..c08b13dad 100644 --- a/Library/Homebrew/cmd/uninstall.rb +++ b/Library/Homebrew/cmd/uninstall.rb @@ -121,7 +121,7 @@ module Homebrew      end      def sample_command -      "brew uninstall --ignore-dependencies #{list ARGV.named}" +      "brew uninstall --ignore-dependencies #{ARGV.named.join(" ")}"      end      def are_required_by_deps  | 
