Added SteamOS support
This commit is contained in:
parent
1b55347dff
commit
c70450ee31
1 changed files with 7 additions and 2 deletions
|
@ -45,8 +45,13 @@ check_dependencies () {
|
||||||
echo "Detected Arch Linux!"
|
echo "Detected Arch Linux!"
|
||||||
arch_install
|
arch_install
|
||||||
else
|
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"
|
if [[ $(cat /etc/*-release | grep "SteamOS") ]]; then
|
||||||
exit
|
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
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue