Correct description of tmp:create task [#1607 state:resolved] [Roderick van Domburg]

This commit is contained in:
Pratik Naik 2008-12-21 16:10:26 +00:00
parent b17b9371c6
commit fab4f96bf2
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ namespace :tmp do
desc "Clear session, cache, and socket files from tmp/"
task :clear => [ "tmp:sessions:clear", "tmp:cache:clear", "tmp:sockets:clear"]
desc "Creates tmp directories for sessions, cache, and sockets"
desc "Creates tmp directories for sessions, cache, sockets, and pids"
task :create do
FileUtils.mkdir_p(%w( tmp/sessions tmp/cache tmp/sockets tmp/pids ))
end
@ -34,4 +34,4 @@ namespace :tmp do
FileUtils.rm(Dir['tmp/pids/[^.]*'])
end
end
end
end