Commit a6dccd63 by Fred Alger

Make 'fetch' test for local directories before creating. Fixes issue #450

parent 2b43a999
......@@ -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
......
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