Make 'fetch' test for local directories before creating. Fixes issue #450
This commit is contained in:
parent
2b43a99927
commit
a6dccd63a1
1 changed files with 2 additions and 1 deletions
|
@ -481,6 +481,7 @@ class Runner(object):
|
||||||
|
|
||||||
if remote_md5 != local_md5:
|
if remote_md5 != local_md5:
|
||||||
# create the containing directories, if needed
|
# create the containing directories, if needed
|
||||||
|
if not os.path.isdir(os.path.dirname(dest)):
|
||||||
os.makedirs(os.path.dirname(dest))
|
os.makedirs(os.path.dirname(dest))
|
||||||
|
|
||||||
# fetch the file and check for changes
|
# fetch the file and check for changes
|
||||||
|
|
Loading…
Reference in a new issue