diff options
| author | Nathan Toone | 2016-12-28 10:56:03 -0700 | 
|---|---|---|
| committer | Nathan Toone | 2016-12-28 11:57:47 -0700 | 
| commit | 6d318761d21e43ef8785ae4da24b8f6fdbd52db8 (patch) | |
| tree | 037d2b7ef2b2573be5b8d9c3ff8e35d9a56894b2 /Library/Homebrew/cask/lib/hbc/pkg.rb | |
| parent | 6648ff130781279de560ad1ac77379a6250d16e4 (diff) | |
| download | brew-6d318761d21e43ef8785ae4da24b8f6fdbd52db8.tar.bz2 | |
Delete pkgutil directories that are really files.
Sometimes, pkgutil will return actual files (usually .nib files) as if they were part of the directory.  Microsoft Office is an example of this: in a recent update the file `/Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app/Contents/SharedSupport/Microsoft Error Reporting.app/Contents/Resources/en.lproj/MainWindowAlt.nib` was returning from `/usr/sbin/pkgutil --only-dirs --files com.microsoft.package.component` even though it should have been a file instead of a directory.  This caused the `rmdir` command to fail.
This patch will check if we are trying to delete a “directory” that is really a “file” - and if we are, we just delete the file instead.  This will allow packages that get in this state to be uninstalled.  A unit test which can be run using `brew cask-tests` is also included.
Diffstat (limited to 'Library/Homebrew/cask/lib/hbc/pkg.rb')
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/pkg.rb | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/pkg.rb b/Library/Homebrew/cask/lib/hbc/pkg.rb index 2fb634f24..497a7b6dd 100644 --- a/Library/Homebrew/cask/lib/hbc/pkg.rb +++ b/Library/Homebrew/cask/lib/hbc/pkg.rb @@ -26,6 +26,7 @@ module Hbc        _deepest_path_first(pkgutil_bom_dirs).each do |dir|          next unless dir.exist? && !MacOS.undeletable?(dir)          _with_full_permissions(dir) do +          _delete_broken_file_dir(dir) && next            _clean_broken_symlinks(dir)            _clean_ds_store(dir)            _rmdir(dir) @@ -97,6 +98,13 @@ 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. +    def _delete_broken_file_dir(path) +      return unless path.file? && !path.symlink? +      @command.run!("/bin/rm", args: ["-f", "--", path], sudo: true) +    end +      # Some pkgs leave broken symlinks hanging around; we clean them out before      # attempting to rmdir to prevent extra cruft from lying around after      # uninstall  | 
