From 71cf85f1cdfe25eaefac7864969d1e9f8a641860 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 8 Apr 2024 12:11:31 +0900 Subject: [PATCH] Add notice when dependency prefetch is successful --- update.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/update.py b/update.py index ab968a5..920835b 100755 --- a/update.py +++ b/update.py @@ -1404,6 +1404,10 @@ def update_pkg_list( failure = True pkg_state[pkg]["build_status"] = "get_dep_fail" break + log_print( + "Successfully prefetched deps, continuing on to build...", + other_state=other_state, + ) for dep in pkg_state[pkg]["other_deps"]: dep_fullpath = get_latest_pkg(dep, "/var/cache/pacman/pkg") if not dep_fullpath: -- 2.49.0