aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-04-03 11:17:30 -0700
committerAdam Vandenberg2010-04-06 07:50:22 -0700
commitbf6c7268b435a8afbb14018d162205079cc3ac9f (patch)
treec88d1fd50e395130cba3197c410e86ecff510ffb /Library
parentfb9f4bbccc640fb4b86557885e5cfdc0cb2ce743 (diff)
downloadbrew-bf6c7268b435a8afbb14018d162205079cc3ac9f.tar.bz2
Force readme files to not be executable.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Homebrew/install.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/install.rb b/Library/Homebrew/install.rb
index 28aa16ed6..e16e4dd77 100755
--- a/Library/Homebrew/install.rb
+++ b/Library/Homebrew/install.rb
@@ -90,6 +90,7 @@ def install f
FORMULA_META_FILES.each do |file|
FileUtils.mv "#{file}.txt", file rescue nil
f.prefix.install file rescue nil
+ (f.prefix+file).chmod 0644 rescue nil
end
build_time = Time.now-beginning
end