feat: KIAUH v6 - full rewrite of KIAUH in Python #428

Open
dw-0 wants to merge 242 commits from kiauh-v6-dev into master
Showing only changes of commit 545397f598 - Show all commits

View File

@@ -179,7 +179,7 @@ def check_package_install(packages: List[str]) -> List[str]:
"""
not_installed = []
for package in packages:
command = ["dpkg-query", "f'${Status}'", "--show", package]
command = ["dpkg-query", "-f'${Status}'", "--show", package]
result = subprocess.run(
command, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, text=True
)