diff options
| author | Jack Nagel | 2014-03-25 23:45:49 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-03-25 23:47:37 -0500 |
| commit | b5e2996365a54577275c62900db924ff0d73b26a (patch) | |
| tree | 20b3314891e16dabbcdd9326e690b79f09ea408a /Library | |
| parent | 50f394032f78f9b1e1a151c20008489a596d4ae9 (diff) | |
| download | brew-b5e2996365a54577275c62900db924ff0d73b26a.tar.bz2 | |
Failing to install plist shouldn't prevent linking
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 9e8cab3fb..edca4e94f 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -553,6 +553,9 @@ class FormulaInstaller return unless f.plist f.plist_path.atomic_write(f.plist) f.plist_path.chmod 0644 + rescue Exception => e + onoe "Failed to install plist file" + ohai e, e.backtrace if debug? end def fix_install_names |
