Update the dest return parameter in the 'result` dictionary in case that the 'dest' variable gets recomposed from the destination directory and the filename. (#53823)

That's a proposal to fix #53822.
This commit is contained in:
Michael Riss 2019-03-28 19:46:57 +01:00 committed by ansibot
parent f86345f777
commit b24a1b3e13

View file

@ -573,6 +573,7 @@ def main():
# it.
filename = url_filename(info['url'])
dest = os.path.join(dest, filename)
result['dest'] = dest
# raise an error if there is no tmpsrc file
if not os.path.exists(tmpsrc):