Parsed parameters to install

This commit is contained in:
Kevin Veen-Birkenbach
2025-04-21 15:52:39 +02:00
parent dcea92af1d
commit 382e6dba39
4 changed files with 28 additions and 5 deletions

View File

@@ -238,7 +238,14 @@ For detailed help on each command, use:
)
elif args.command == "pull":
from pkgmgr.pull_with_verification import pull_with_verification
pull_with_verification(selected, REPOSITORIES_BASE_DIR, ALL_REPOSITORIES, args.extra_args, no_verification=args.no_verification, preview=args.preview)
pull_with_verification(
selected,
REPOSITORIES_BASE_DIR,
ALL_REPOSITORIES,
args.extra_args,
args.no_verification,
args.preview
)
else:
exec_proxy_command(command,selected, REPOSITORIES_BASE_DIR, ALL_REPOSITORIES, args.command, args.extra_args, args.preview)
exit(0)