fix: properly re-use environments

This commit is contained in:
Daylin Morgan 2023-08-04 10:38:09 -05:00
parent 0411f81159
commit 5febbe0267
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

View file

@ -52,7 +52,7 @@ from typing import (
from urllib.error import HTTPError from urllib.error import HTTPError
from urllib.request import urlopen from urllib.request import urlopen
__version__ = "23.5a7-4-g7100243-dev" __version__ = "23.5a7-5-g0411f81-dev"
class Spinner: class Spinner:
@ -1528,12 +1528,11 @@ class Viv:
else: else:
vivenv.create() vivenv.create()
vivenv.install_pkgs() vivenv.install_pkgs()
vivenv.touch() vivenv.touch()
vivenv.meta.write() vivenv.meta.write()
vivenv.bin_exists(bin) vivenv.bin_exists(bin)
sys.exit( sys.exit(subprocess.run([vivenv.path / "bin" / bin, *rest]).returncode)
subprocess.run([vivenv.path / "bin" / bin, *rest]).returncode
)
class Arg: class Arg: