mirror of
https://github.com/fortressforever/git-svn-sync.git
synced 2024-11-10 06:42:01 +00:00
Fix my brain not working right
This commit is contained in:
parent
50b5412c15
commit
6b68dd0867
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ if [ -d $client ] ; then
|
|||
fi
|
||||
|
||||
# Sync client
|
||||
git svn clone --parent ${svn_url} ${client} || { echo "Could not clone svn repository at ${svn_url} in ${client}" ; exit 1; }
|
||||
git svn clone ${svn_url} ${client} || { echo "Could not clone svn repository at ${svn_url} in ${client}" ; exit 1; }
|
||||
|
||||
cd ${client}
|
||||
git remote add origin ${git_url} || { echo "Could not set up server as remote from sync" ; exit 1; }
|
||||
|
|
Loading…
Reference in a new issue