update_manager: fix bug in env dist package update

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Arksine 2020-12-22 18:33:37 -05:00
parent 313357061e
commit 063ef7194a
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ class GitUpdater:
src = os.path.join(dist_dir, f)
dest = os.path.join(env_path, site_path, f)
self._notify_status(f"Linking to dist package: {pkg}")
os.symlink(f, dest)
os.symlink(src, dest)
break
reqs = os.path.join(
self.repo_path, REPO_DATA[self.name]['requirements'])