Skip to content

Commit

Permalink
For svn files also spilt required
Browse files Browse the repository at this point in the history
  • Loading branch information
arunagw committed Jul 23, 2011
1 parent 7d9cf9a commit 0fb0973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion railties/lib/rails/test_unit/testing.rake
Expand Up @@ -108,7 +108,7 @@ namespace :test do
Rake::TestTask.new(:uncommitted => "test:prepare") do |t| Rake::TestTask.new(:uncommitted => "test:prepare") do |t|
def t.file_list def t.file_list
if File.directory?(".svn") if File.directory?(".svn")
changed_since_checkin = silence_stderr { `svn status` }.map { |path| path.chomp[7 .. -1] } changed_since_checkin = silence_stderr { `svn status` }.split.map { |path| path.chomp[7 .. -1] }
elsif File.directory?(".git") elsif File.directory?(".git")
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` }.split.map { |path| path.chomp }
else else
Expand Down

0 comments on commit 0fb0973

Please sign in to comment.