Explorar el Código

Typo fix.

master
Ben Kurtovic hace 8 años
padre
commit
44a22fc50c
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      lib/kgrader/backend/svn.rb

+ 3
- 3
lib/kgrader/backend/svn.rb Ver fichero

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


Cargando…
Cancelar
Guardar