diff options
| author | Adam Vandenberg | 2013-06-30 11:16:53 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-30 11:16:53 -0700 |
| commit | 5437a480ebd34246db43a875c799f591d3cbf40d (patch) | |
| tree | 0d76e9ca53593e09f7223abef31fc9f111d019c2 /Library/Homebrew | |
| parent | b40615d66ac8572c6735f3bb9d6cd3e781edf740 (diff) | |
| download | brew-5437a480ebd34246db43a875c799f591d3cbf40d.tar.bz2 | |
install plist before linking
If linking fails, won't try to re-install the plist.
Closes Homebrew/homebrew#20843.
Diffstat (limited to 'Library/Homebrew')
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index a4f3a4067..b1860dbdc 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -246,6 +246,8 @@ class FormulaInstaller def finish ohai 'Finishing up' if ARGV.verbose? + install_plist + if f.keg_only? begin Keg.new(f.prefix).optlink @@ -258,7 +260,6 @@ class FormulaInstaller check_PATH unless f.keg_only? end - install_plist fix_install_names ohai "Summary" if ARGV.verbose? or show_summary_heading |
