From 9d77f69527ba7ae30f5183b14106d92fc45220c3 Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 18 Jan 2022 13:57:05 +0000 Subject: fixed missing to_update --- src/verbs/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/verbs/install.py b/src/verbs/install.py index 1f2487a..0d8ec3b 100644 --- a/src/verbs/install.py +++ b/src/verbs/install.py @@ -419,7 +419,7 @@ def install(args, options, config): # have some interaction with sudo when necessary rather than always require it # this check may need to be done sooner? if util.is_root() or options["r"] != "/": - to_install, location_failed = args, [] + to_install, to_update, location_failed = args, [], [] if options["n"]: for dep in to_install: dep_checksum, dep_sources, dep_repo, size, files = find_package(dep, config["repos"], config["dir"]["packages"], config["sources"]) -- cgit v1.2.1