Skip to content
Snippets Groups Projects
Commit cfd8bf2c authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

add centos support to get-peasoup-package.sh

Former-commit-id: 5943127c
parent 9f2a06f3
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,12 @@ install_packs()
{
for i in $*
do
sudo apt-get install $i -y
which apt-get 2> /dev/null
if [[ $? = 0 ]]; then
sudo apt-get install $i -y
else
sudo yum install $i -y
fi
done
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment