Remove plist file exists check

Closes Homebrew/homebrew#15958.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Stefan 2012-11-10 20:39:40 +01:00 committed by Adam Vandenberg
parent efcd926d1b
commit 49ef6267f5

View File

@ -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