mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
Merge pull request #72 from afonsofrancof/issue-49
Fix Steam on Debian. Closes Issue 49
This commit is contained in:
commit
85d85cf2e7
|
@ -71,7 +71,22 @@ install_additional_dependencies() {
|
||||||
|
|
||||||
echo "Lutris Installation complete."
|
echo "Lutris Installation complete."
|
||||||
echo "Installing steam..."
|
echo "Installing steam..."
|
||||||
sudo apt-get install -y steam
|
|
||||||
|
#Install steam on Debian
|
||||||
|
if (lsb_release -i | grep -qi Debian); then
|
||||||
|
#Enable i386 repos
|
||||||
|
sudo dpkg --add-architecture i386
|
||||||
|
# Install software-properties-common to be able to add repos
|
||||||
|
sudo apt-get install -y software-properties-common
|
||||||
|
# Add repos necessary for installing steam
|
||||||
|
sudo apt-add-repository contrib -y
|
||||||
|
sudo apt-add-repository non-free -y
|
||||||
|
#Install steam
|
||||||
|
sudo apt-get install steam-installer -y
|
||||||
|
else
|
||||||
|
#Install steam on Ubuntu
|
||||||
|
sudo apt-get install -y steam
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
*zypper)
|
*zypper)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user