From 54a69718d5fca1ae8a7ca5e66df058992b7cb6ce Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Fri, 22 Apr 2016 02:11:07 -0500 Subject: [PATCH] Typo. --- lib/kgrader/backend/svn.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kgrader/backend/svn.rb b/lib/kgrader/backend/svn.rb index 4352370..3644c3b 100644 --- a/lib/kgrader/backend/svn.rb +++ b/lib/kgrader/backend/svn.rb @@ -53,7 +53,7 @@ module KGrader::Backend def commit(repo, message, *paths) fullpaths = *paths.map { |fn| File.join repo, fn } - run 'add' fullpaths + run 'add', fullpaths run 'commit', '-m', message, fullpaths end