diff options
| author | Mike McQuaid | 2012-11-25 20:53:04 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2012-11-25 20:53:04 +0000 |
| commit | a1cdf9f64d4dbe9ec78ff8e3b83a8e03508c9cf9 (patch) | |
| tree | 80a47b187cde9b01a11d1220bd77b946fa84b5a5 /Library | |
| parent | a9cf61f5967365b5fdd51d3a03d76ea7d1799868 (diff) | |
| download | homebrew-a1cdf9f64d4dbe9ec78ff8e3b83a8e03508c9cf9.tar.bz2 | |
Overwrite plists.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/extend/pathname.rb | 2 |
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 |
