From 64d05e37de0840bf58afac75b4c26c5de977c335 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Fri, 26 May 2023 00:08:27 -0500 Subject: [PATCH] many more things --- src/viv/viv.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/viv/viv.py b/src/viv/viv.py index ee2d264..11e8787 100755 --- a/src/viv/viv.py +++ b/src/viv/viv.py @@ -51,7 +51,7 @@ from typing import ( Generator, ) -__version__ = "22.12a3-43-g4b61cb9-dev" +__version__ = "22.12a3-44-g5e89d63-dev" @dataclass @@ -1021,17 +1021,15 @@ class Viv: ) sys.exit(1) - echo("Preparing to install viv.py") - sha256 = fetch_source(args.reference) sys.path.append(str(c.srccache)) downloaded_version = __import__(sha256).__version__ echo(f"Downloaded version: {downloaded_version}") - q = ( - "Would you like to install viv with the following settings\n" - + INSTALL_TEMPLATE.format( - src_location="~/.local/share/viv/viv.py", cli_location="~/bin/viv" - ) + q = INSTALL_TEMPLATE.format( + src_location="~/.local/share/viv/viv.py", cli_location="~/bin/viv" + ) + ( + "Would you like to perform the above " + "installation steps with the following settings?" ) if confirm(q):