feat(cli): add --system-update flag to update command
Some checks failed
CI / test-unit (push) Has been cancelled
CI / test-integration (push) Has been cancelled
CI / test-env-virtual (push) Has been cancelled
CI / test-env-nix (push) Has been cancelled
CI / test-e2e (push) Has been cancelled
CI / test-virgin-user (push) Has been cancelled
CI / test-virgin-root (push) Has been cancelled
CI / codesniffer-shellcheck (push) Has been cancelled
CI / codesniffer-ruff (push) Has been cancelled

- Register --system-update for `pkgmgr update`
- Expose args.system_update for update workflow
- Align CLI with update_repos and E2E tests

https://chatgpt.com/share/693db645-c420-800f-b921-9d5c0356d0ac
This commit is contained in:
Kevin Veen-Birkenbach
2025-12-13 20:02:48 +01:00
parent 1e5d6d3eee
commit 7f06447bbd

View File

@@ -33,11 +33,11 @@ def add_install_update_subparsers(
)
add_install_update_arguments(update_parser)
update_parser.add_argument(
"--system",
"--system-update",
dest="system_update",
action="store_true",
help="Include system update commands",
)
# KEIN --update hier nötig → update impliziert force_update=True
deinstall_parser = subparsers.add_parser(
"deinstall",