Parcourir la source

Typo fix.

master
Ben Kurtovic il y a 8 ans
Parent
révision
44a22fc50c
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. +3
    -3
      lib/kgrader/backend/svn.rb

+ 3
- 3
lib/kgrader/backend/svn.rb Voir le fichier

@@ -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)


Chargement…
Annuler
Enregistrer