git mkdir causes problems with older git (can't checkout to existing directory)

This commit is contained in:
Derek Carter 2012-07-20 09:48:18 -04:00
parent 72aefdb609
commit 69ef933a1e

2
git
View file

@ -87,7 +87,7 @@ def get_version(dest):
def clone(repo, dest, branch):
''' makes a new git repo if it does not already exist '''
try:
os.makedirs(dest)
os.makedirs(os.path.dirname(dest))
except:
pass
cmd = "git clone %s %s" % (repo, dest)