install: update message printed when installing core local/venv
This commit is contained in:
parent
6e059c7446
commit
be8fa1b96d
1 changed files with 2 additions and 1 deletions
3
tasks.py
3
tasks.py
|
@ -326,7 +326,8 @@ def install(c, dev=False, verbose=False, local=False, prefix=DEFAULT_PREFIX):
|
||||||
build_core(c, hide, prefix)
|
build_core(c, hide, prefix)
|
||||||
with p.start("installing vcmd/gui"):
|
with p.start("installing vcmd/gui"):
|
||||||
install_core(c, hide)
|
install_core(c, hide)
|
||||||
with p.start("installing poetry virtual environment"):
|
install_type = "core" if local else "core virtual environment"
|
||||||
|
with p.start(f"installing {install_type}"):
|
||||||
install_poetry(c, dev, local, hide)
|
install_poetry(c, dev, local, hide)
|
||||||
with p.start("installing scripts and /etc/core"):
|
with p.start("installing scripts and /etc/core"):
|
||||||
install_scripts(c, local, hide, prefix)
|
install_scripts(c, local, hide, prefix)
|
||||||
|
|
Loading…
Reference in a new issue