Merge pull request #72 from afonsofrancof/issue-49

Fix Steam on Debian. Closes Issue 49
This commit is contained in:
Chris Titus 2024-07-25 16:34:02 -05:00 committed by GitHub
commit 85d85cf2e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -71,7 +71,22 @@ install_additional_dependencies() {
echo "Lutris Installation complete."
echo "Installing 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)