From e3136a5e1078c32af87acfc2c7efb4574e7445f4 Mon Sep 17 00:00:00 2001 From: hEINsteinkim Date: Wed, 1 Feb 2017 17:07:09 +0100 Subject: [PATCH] Prevent errors from "&" in svn URI. Added " around the url in the fetch so it works with special charactors in the svn url. (Tested to work with an & in the URL). --- lib/svn2git/migration.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/svn2git/migration.rb b/lib/svn2git/migration.rb index 4de8a9e..8b21c82 100755 --- a/lib/svn2git/migration.rb +++ b/lib/svn2git/migration.rb @@ -219,7 +219,7 @@ def clone! end end - cmd += @url + cmd += '"' + @url + '"' run_command(cmd, true, true) end