From be8fa1b96d78fb6dd2d2c88ff36f0a2590491b96 Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Fri, 11 Sep 2020 16:41:01 -0700 Subject: [PATCH] install: update message printed when installing core local/venv --- tasks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 535d1240..0c4e6f6d 100644 --- a/tasks.py +++ b/tasks.py @@ -326,7 +326,8 @@ def install(c, dev=False, verbose=False, local=False, prefix=DEFAULT_PREFIX): build_core(c, hide, prefix) with p.start("installing vcmd/gui"): 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) with p.start("installing scripts and /etc/core"): install_scripts(c, local, hide, prefix)