From 4a9722c1bc45f969421e40c5b142a49673a5007b Mon Sep 17 00:00:00 2001 From: Lucas Holt Date: Sat, 30 Mar 2024 15:49:41 -0400 Subject: [PATCH] load the index on an update check. (no choice) --- mport/mport.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mport/mport.c b/mport/mport.c index f4a940b..93056b5 100644 --- a/mport/mport.c +++ b/mport/mport.c @@ -329,6 +329,7 @@ main(int argc, char *argv[]) if (argc > 1) { if (!strcmp(argv[1], "updates") || !strcmp(argv[1], "up")) { opts.update = true; + loadIndex(mport); } else if (!strcmp(argv[1], "prime")) { opts.prime = true; } else {