aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorStefan2012-11-10 20:39:40 +0100
committerAdam Vandenberg2012-11-11 18:02:22 -0800
commitd985216fbfd9ec3799cf3ed40e34b91cdb528631 (patch)
tree1af8023a7d4bce84bb96bc60d501d12e04a7dd33 /Library/Homebrew
parent6dfec65e90794b52265e76da39d6e457cbbe4eea (diff)
downloadhomebrew-d985216fbfd9ec3799cf3ed40e34b91cdb528631.tar.bz2
Remove plist file exists check
Closes #15958. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/formula_installer.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index a5cc1def4..a47a03b37 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -290,7 +290,8 @@ class FormulaInstaller
def install_plist
# Install a plist if one is defined
- if f.startup_plist and not f.plist_path.exist?
+ # Skip plist file exists check: https://github.com/mxcl/homebrew/issues/15849
+ if f.startup_plist
f.plist_path.write f.startup_plist
f.plist_path.chmod 0644
end