aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend
diff options
context:
space:
mode:
authorJack Nagel2012-11-25 15:04:58 -0600
committerJack Nagel2012-11-25 15:11:57 -0600
commit340769443c5d2644afdb3af817ea23c0176c89d8 (patch)
treefa0a37a16582cd832a6904613c86b3ae5bced7ca /Library/Homebrew/extend
parent1529fcefb760413237b2ed37e08b950ccdff9b85 (diff)
downloadbrew-340769443c5d2644afdb3af817ea23c0176c89d8.tar.bz2
Rewrite plists when installing from a bottle
Diffstat (limited to 'Library/Homebrew/extend')
-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 2b04cae57..d39b21689 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