Commit 1248d2ce by James Cammarata

Fixing absolute path calculation for file module when linking

Fixes #7403
parent d72cd70c
......@@ -184,7 +184,7 @@ def main():
absrc = src
if not os.path.isabs(absrc):
absrc = os.path.normpath('%s/%s' % (os.path.dirname(path), absrc))
absrc = os.path.abspath(src)
if not os.path.exists(absrc) and not force:
module.fail_json(path=path, src=src, msg='src file does not exist, use "force=yes" if you really want to create the link: %s' % absrc)
......
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