From 49ef6267f5b15cbb60a369502d951ff79dce37ca Mon Sep 17 00:00:00 2001 From: Stefan Date: Sat, 10 Nov 2012 20:39:40 +0100 Subject: [PATCH] Remove plist file exists check Closes Homebrew/homebrew#15958. Signed-off-by: Adam Vandenberg --- Library/Homebrew/formula_installer.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index a5cc1def4e..a47a03b378 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