From 013e5b9ddce4f6fc3d94329fba4d9be20aa430e9 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Thu, 14 Aug 2025 20:52:20 +0200 Subject: [PATCH] bootstrap: add -q for rpm --whatprovides The rpm -q option lost during refactoring which is obviously needed when requesting the package name. Fixes: c290c6851a7c10aaa4a5e18e1c14d750c338e339 Signed-off-by: Kyr Shatskyy --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index a4ae99c8c5..54b09207bf 100755 --- a/bootstrap +++ b/bootstrap @@ -37,7 +37,7 @@ Linux) OS=$(echo $NAME | tr -d ' ') fi # rpm/dnf is the default, to reduce repetition in the case statement - has_pkg="rpm --whatprovides" + has_pkg="rpm -q --whatprovides" install_pkg="sudo dnf install -y" case "$OS" in Ubuntu|Debian|LinuxMint) -- 2.39.5