Fix my brain not working right

This commit is contained in:
squeek 2014-11-11 18:23:52 -08:00
parent 50b5412c15
commit 6b68dd0867
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ if [ -d $client ] ; then
fi fi
# Sync client # 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} cd ${client}
git remote add origin ${git_url} || { echo "Could not set up server as remote from sync" ; exit 1; } git remote add origin ${git_url} || { echo "Could not set up server as remote from sync" ; exit 1; }