mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
refactor: simplify some outputs to be less verbose
This commit is contained in:
parent
c159dd6032
commit
e7090955e0
1 changed files with 2 additions and 3 deletions
|
@ -320,7 +320,7 @@ class ViVenv:
|
||||||
|
|
||||||
run(
|
run(
|
||||||
cmd,
|
cmd,
|
||||||
spinmsg=f"installing packages in vivenv: {self.name}",
|
spinmsg=f"installing packages in vivenv",
|
||||||
clean_up_path=self.path,
|
clean_up_path=self.path,
|
||||||
verbose=bool(os.getenv("VIV_VERBOSE")),
|
verbose=bool(os.getenv("VIV_VERBOSE")),
|
||||||
)
|
)
|
||||||
|
@ -593,10 +593,9 @@ class Viv:
|
||||||
if not metadata_file.is_file():
|
if not metadata_file.is_file():
|
||||||
error(f"Unable to find metadata for vivenv: {args.vivenv}", code=1)
|
error(f"Unable to find metadata for vivenv: {args.vivenv}", code=1)
|
||||||
|
|
||||||
echo(f"more info about {vivenv.name}:\n")
|
echo(f"more info about {vivenv.name}:")
|
||||||
|
|
||||||
vivenv.dump_info()
|
vivenv.dump_info()
|
||||||
echo(f"located at: {vivenv.path}")
|
|
||||||
|
|
||||||
def cli(self):
|
def cli(self):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue