update_manager: fix bug in env dist package update
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
313357061e
commit
063ef7194a
|
@ -399,7 +399,7 @@ class GitUpdater:
|
||||||
src = os.path.join(dist_dir, f)
|
src = os.path.join(dist_dir, f)
|
||||||
dest = os.path.join(env_path, site_path, f)
|
dest = os.path.join(env_path, site_path, f)
|
||||||
self._notify_status(f"Linking to dist package: {pkg}")
|
self._notify_status(f"Linking to dist package: {pkg}")
|
||||||
os.symlink(f, dest)
|
os.symlink(src, dest)
|
||||||
break
|
break
|
||||||
reqs = os.path.join(
|
reqs = os.path.join(
|
||||||
self.repo_path, REPO_DATA[self.name]['requirements'])
|
self.repo_path, REPO_DATA[self.name]['requirements'])
|
||||||
|
|
Loading…
Reference in New Issue