Skip to content

Commit

Permalink
fix: dnf group remove command missed group prefix
Browse files Browse the repository at this point in the history
Co-authored-by: Gerald Pinder <gmpinder@gmail.com>
  • Loading branch information
fiftydinar and gmpinder authored Dec 23, 2024
1 parent f176120 commit 7458b4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/dnf/dnf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ elif [[ ${#GROUP_INSTALL[@]} -gt 0 ]]; then
elif [[ ${#GROUP_REMOVE[@]} -gt 0 ]]; then
echo "Removing RPM groups"
echo "Removing: ${GROUP_REMOVE[*]}"
dnf -y remove "${GROUP_REMOVE[@]}"
dnf -y group remove "${GROUP_REMOVE[@]}"
fi

get_json_array INSTALL_PKGS 'try .["install"].["packages"][]' "${1}"
Expand Down

0 comments on commit 7458b4b

Please sign in to comment.