From d59dc8ad5310651b9e1da2ce71b5d068f8c1dc26 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sun, 14 Dec 2025 10:09:46 +0100 Subject: [PATCH] fix(cli): route update exclusively through UpdateManager * Remove `update` from repos command dispatch * Prevent update from being handled by `handle_repos_command` * Ensure top-level `update` always uses UpdateManager * Fix "Unknown repos command: update" error after refactor https://chatgpt.com/share/693e7ee9-2658-800f-985f-293ed0c8efbc --- src/pkgmgr/cli/dispatch.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pkgmgr/cli/dispatch.py b/src/pkgmgr/cli/dispatch.py index f42c555..285c826 100644 --- a/src/pkgmgr/cli/dispatch.py +++ b/src/pkgmgr/cli/dispatch.py @@ -129,7 +129,6 @@ def dispatch_command(args, ctx: CLIContext) -> None: # ------------------------------------------------------------------ # if args.command in ( "install", - "update", "deinstall", "delete", "status",