Added SteamOS support
This commit is contained in:
parent
1b55347dff
commit
c70450ee31
1 changed files with 7 additions and 2 deletions
|
@ -44,6 +44,10 @@ check_dependencies () {
|
|||
if [[ $(cat /etc/*-release | grep "Arch Linux") ]]; then
|
||||
echo "Detected Arch Linux!"
|
||||
arch_install
|
||||
else
|
||||
if [[ $(cat /etc/*-release | grep "SteamOS") ]]; then
|
||||
echo "Detected SteamOS!"
|
||||
arch_install
|
||||
else
|
||||
echo "You're on an unsupported distro. Please manually install the required dependencies from the README.md or make a pull request adding support for your distro"
|
||||
exit
|
||||
|
@ -51,6 +55,7 @@ check_dependencies () {
|
|||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
#Downloads Polygon
|
||||
|
|
Loading…
Reference in a new issue