grep skips .svn directories

This commit is contained in:
Filip Tepper 2010-02-04 23:09:46 +08:00 committed by Jeremy McAnally
parent a5ebcb32ff
commit ca96342054
1 changed files with 2 additions and 2 deletions

View File

@ -225,9 +225,9 @@ module Rails
value = "" value = ""
# Specifically double quote for finding 'test_help' # Specifically double quote for finding 'test_help'
command = if double_quote command = if double_quote
"grep -r \"#{text}\" #{where}" "grep -r --exclude=\*.svn\* \"#{text}\" #{where}"
else else
"grep -r '#{text}' #{where}" "grep -r --exclude=\*.svn\* '#{text}' #{where}"
end end
Open3.popen3(command) do |stdin, stdout, stderr| Open3.popen3(command) do |stdin, stdout, stderr|