aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2012-11-25 20:53:04 +0000
committerMike McQuaid2012-11-25 20:53:04 +0000
commita1cdf9f64d4dbe9ec78ff8e3b83a8e03508c9cf9 (patch)
tree80a47b187cde9b01a11d1220bd77b946fa84b5a5 /Library
parenta9cf61f5967365b5fdd51d3a03d76ea7d1799868 (diff)
downloadhomebrew-a1cdf9f64d4dbe9ec78ff8e3b83a8e03508c9cf9.tar.bz2
Overwrite plists.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/pathname.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb
index d39b21689..2b04cae57 100644
--- a/Library/Homebrew/extend/pathname.rb
+++ b/Library/Homebrew/extend/pathname.rb
@@ -98,7 +98,7 @@ class Pathname
# we assume this pathname object is a file obviously
def write content
- raise "Will not overwrite #{to_s}" if exist? and not ARGV.force?
+ #raise "Will not overwrite #{to_s}" if exist? and not ARGV.force?
dirname.mkpath
File.open(self, 'w') {|f| f.write content }
end