mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #637 from goozbach/git-mkdir
git mkdir causes problems with older git (can't c/o to existing directory)
This commit is contained in:
commit
70ef8e9ebb
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ def get_version(dest):
|
||||||
def clone(repo, dest, branch):
|
def clone(repo, dest, branch):
|
||||||
''' makes a new git repo if it does not already exist '''
|
''' makes a new git repo if it does not already exist '''
|
||||||
try:
|
try:
|
||||||
os.makedirs(dest)
|
os.makedirs(os.path.dirname(dest))
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
cmd = "git clone %s %s" % (repo, dest)
|
cmd = "git clone %s %s" % (repo, dest)
|
||||||
|
|
Loading…
Reference in a new issue