aboutsummaryrefslogtreecommitdiffstats
path: root/railties/Rakefile
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-01-15 17:28:01 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-01-15 17:28:01 +0000
commit62f0512e54d594c4bb6fcb8d16101fdeb87b89e8 (patch)
treed0c2a4493f4c40cb646df0cdf14491902a782db7 /railties/Rakefile
parentf3965af649efa7e975351b2b652911674af31ee6 (diff)
downloadrails-62f0512e54d594c4bb6fcb8d16101fdeb87b89e8.tar.gz
rails-62f0512e54d594c4bb6fcb8d16101fdeb87b89e8.tar.bz2
rails-62f0512e54d594c4bb6fcb8d16101fdeb87b89e8.zip
Fixed log file permissions to be 666 instead of 777 (so they're not executable) #471 [Lucas Carlson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@416 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r--railties/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/Rakefile b/railties/Rakefile
index 43723af8a2..ae82f5870c 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -79,7 +79,7 @@ task :initialize_log_files do
LOG_FILES.each do |log_file|
log_path = File.join(log_dir, log_file)
touch log_path
- chmod 0777, log_path
+ chmod 0666, log_path
end
end