We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c064ae commit ac0ad7cCopy full SHA for ac0ad7c
install.sh
@@ -81,7 +81,12 @@ install_if_needed_apt() {
81
install_if_needed_rhel() {
82
local pkgs=()
83
if [[ $need_gcc -eq 1 ]]; then
84
- pkgs+=(gcc)
+ echo "[*] Installing Development Tools group..."
85
+ if command -v dnf >/dev/null 2>&1; then
86
+ dnf groupinstall "Development Tools" -y
87
+ else
88
+ yum groupinstall "Development Tools" -y
89
+ fi
90
fi
91
if [[ $need_ncurses_headers -eq 1 ]]; then
92
pkgs+=(ncurses-devel)
0 commit comments