Browse Source

Fix argument order.

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

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

@@ -62,8 +62,8 @@ module KGrader::Backend
private
def run(*cmd)
if @password
cmd.unshift '--password'
cmd.unshift @password
cmd.unshift '--password'
end
Open3.capture2e('svn', *cmd)
end


Loading…
Cancel
Save