Commit f0f8eb34 by Derek Carter

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

parent 8bb8314d
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment