mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
fix(#7): don't error if no spec passed to viv run
This commit is contained in:
parent
837dbb3e41
commit
c5c8be0ed3
1 changed files with 4 additions and 1 deletions
|
@ -56,7 +56,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.8a3-17-g7b5d4ad-dev"
|
__version__ = "23.8a3-18-g837dbb3-dev"
|
||||||
|
|
||||||
|
|
||||||
class Spinner:
|
class Spinner:
|
||||||
|
@ -1701,6 +1701,9 @@ class Viv:
|
||||||
env.update({"VIV_SPEC": " ".join(f"'{req}'" for req in spec)})
|
env.update({"VIV_SPEC": " ".join(f"'{req}'" for req in spec)})
|
||||||
|
|
||||||
subprocess_run_quit([sys.executable, scriptpath, *rest], env=env)
|
subprocess_run_quit([sys.executable, scriptpath, *rest], env=env)
|
||||||
|
elif not spec:
|
||||||
|
log.warning("using viv with empty spec, skipping vivenv creation")
|
||||||
|
subprocess_run_quit([sys.executable, scriptpath, *rest])
|
||||||
else:
|
else:
|
||||||
vivenv = ViVenv(spec + deps)
|
vivenv = ViVenv(spec + deps)
|
||||||
if not vivenv.loaded or Env().viv_force:
|
if not vivenv.loaded or Env().viv_force:
|
||||||
|
|
Loading…
Reference in a new issue