diff options
| author | Markus Reiter | 2017-02-04 20:24:29 +0100 | 
|---|---|---|
| committer | Markus Reiter | 2017-02-04 20:27:59 +0100 | 
| commit | fc712b0089dbb4e6ebeb3f5bc846b00a62029f69 (patch) | |
| tree | 49bc76b2d8985b0b07ce8f037cbccb4fe5aac511 /Library/Homebrew/cask/lib/hbc/pkg.rb | |
| parent | 6d318761d21e43ef8785ae4da24b8f6fdbd52db8 (diff) | |
| download | brew-fc712b0089dbb4e6ebeb3f5bc846b00a62029f69.tar.bz2 | |
Make descriptions a bit clearer.
Diffstat (limited to 'Library/Homebrew/cask/lib/hbc/pkg.rb')
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/pkg.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/pkg.rb b/Library/Homebrew/cask/lib/hbc/pkg.rb index 497a7b6dd..39252b48a 100644 --- a/Library/Homebrew/cask/lib/hbc/pkg.rb +++ b/Library/Homebrew/cask/lib/hbc/pkg.rb @@ -98,8 +98,8 @@ module Hbc        end      end -    # Some pkgs (microsoft office for one) leave files (generally nibs) but -    # report them as directories.  We remove these as files instead. +    # Some pkgs incorrectly report files (generally nibs) +    # as directories; we remove these as files instead.      def _delete_broken_file_dir(path)        return unless path.file? && !path.symlink?        @command.run!("/bin/rm", args: ["-f", "--", path], sudo: true)  | 
