Skip to content

Commit aa3bedf

Browse files
authored
Merge #313 (Support yum package manager)
2 parents 65de15c + 55fc053 commit aa3bedf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

zphisher.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,8 @@ dependencies() {
215215
sudo pacman -S "$pkg" --noconfirm
216216
elif [[ `command -v dnf` ]]; then
217217
sudo dnf -y install "$pkg"
218+
elif [[ `command -v yum` ]]; then
219+
sudo yum -y install "$pkg"
218220
else
219221
echo -e "\n${RED}[${WHITE}!${RED}]${RED} Unsupported package manager, Install packages manually."
220222
{ reset_color; exit 1; }

0 commit comments

Comments
 (0)