modified: scripts/generic-package-manager.py
All checks were successful
/ build-docker-image (push) Successful in 8s

This commit is contained in:
2025-12-14 03:31:31 +00:00
parent b2553f24b9
commit 4401a8fdc3

View File

@@ -23,7 +23,7 @@ def validate_args(missing_a_example, missing_b_example):
if not arg_a:
print (missing_a_example)
exit
if not missing_b_example and not arg_b:
if missing_b_example and not arg_b:
print (missing_b_example)
exit