From f9f05d0ffbf5a6972c528fff044b5e107a856262 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Jan 2024 11:09:33 +0100 Subject: Update yum to dnf --- provision | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'provision') diff --git a/provision b/provision index f21a7aa..6574db9 100755 --- a/provision +++ b/provision @@ -7,8 +7,8 @@ else command_name="brew" install_command="install" else - if command -v apt &> /dev/null; then - command_name="yum" + if command -v dnf &> /dev/null; then + command_name="dnf" install_command="install" else if command -v pacman &> /dev/null; then -- cgit