Added gcc for Photon git deps

This commit is contained in:
David Murphy 2024-07-09 15:00:36 -06:00 committed by Daniel Wozniak
parent 138b4ec78b
commit 8ee4de5ca4

View file

@ -6581,10 +6581,15 @@ install_photon_git_deps() {
if ! __check_command_exists ps; then
__PACKAGES="${__PACKAGES} procps-ng"
fi
if ! __check_command_exists git; then
__PACKAGES="${__PACKAGES} git"
fi
if ! __check_command_exists gcc; then
__PACKAGES="${__PACKAGES} gcc"
fi
if [ -n "${__PACKAGES}" ]; then
# shellcheck disable=SC2086
__tdnf_install_noinput ${__PACKAGES} || return 1