Skip to content

Commit

Permalink
install_package: use non-interactive mode for yum
Browse files Browse the repository at this point in the history
  • Loading branch information
bwRavencl committed May 24, 2024
1 parent 462b5c5 commit 77f3a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InstallControllerBuddy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ then
sudo -- sh -c "apt-get update && apt-get install -y $1"
elif which yum >/dev/null 2>/dev/null
then
sudo yum install "$2"
sudo yum -y install "$2"
elif which pacman >/dev/null 2>/dev/null
then
sudo pacman -S --noconfirm "$3"
Expand Down

0 comments on commit 77f3a65

Please sign in to comment.