We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0d1f98c + 2d3e488 commit c53ff33Copy full SHA for c53ff33
railties/lib/rails/test_unit/testing.rake
@@ -87,7 +87,7 @@ namespace :test do
87
if File.directory?(".svn")
88
changed_since_checkin = silence_stderr { `svn status` }.split.map { |path| path.chomp[7 .. -1] }
89
elsif File.directory?(".git")
90
- changed_since_checkin = silence_stderr { `git ls-files --modified --others` }.split.map { |path| path.chomp }
+ changed_since_checkin = silence_stderr { `git ls-files --modified --others --exclude-standard` }.split.map { |path| path.chomp }
91
else
92
abort "Not a Subversion or Git checkout."
93
end
0 commit comments