Skip to content

Commit

Permalink
Merge b68d303 into 1053b01
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddavo committed Aug 20, 2019
2 parents 1053b01 + b68d303 commit 0a0086f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion beetsplug/alternatives.py
Expand Up @@ -326,7 +326,8 @@ def update(self, create=None):
def create_symlink(self, item):
dest = self.destination(item)
util.mkdirall(dest)
util.link(item.path, dest)
rel = os.path.relpath(item.path, os.path.dirname(dest))
util.link(rel, dest)


class Worker(futures.ThreadPoolExecutor):
Expand Down

0 comments on commit 0a0086f

Please sign in to comment.