Browse Source

Typo fix.

master
Ben Kurtovic 8 years ago
parent
commit
44a22fc50c
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      lib/kgrader/backend/svn.rb

+ 3
- 3
lib/kgrader/backend/svn.rb View File

@@ -52,9 +52,9 @@ module KGrader::Backend
end

def commit(repo, message, *paths)
fullpaths = *paths.map { |fn| File.join repo, fn }
run 'add', fullpaths
run 'commit', '-m', message, fullpaths
fullpaths = paths.map { |fn| File.join repo, fn }
run 'add', *fullpaths
run 'commit', '-m', message, *fullpaths
end

def commit_date(repo)


Loading…
Cancel
Save