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