Commit 82d3fcfd by Daniel Néri

File module fix for symlink from relative source path

parent cfb7c94c
...@@ -356,8 +356,7 @@ elif state == 'link': ...@@ -356,8 +356,7 @@ elif state == 'link':
if os.path.isabs(src): if os.path.isabs(src):
abs_src = src abs_src = src
else: else:
# FIXME: this does not seem correct? -- MPD abs_src = os.path.join(os.path.dirname(dest), src)
abs_src = os.path.dirname(dest)
if not os.path.exists(abs_src): if not os.path.exists(abs_src):
fail_json(dest=dest, src=src, msg='src file does not exist') fail_json(dest=dest, src=src, msg='src file does not exist')
......
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