Files
fluffy-pancake/build/40-steam.sh
T
humocs-manandGitHub 75474334d0 Update Steam installation script to remove i686 drivers
Removed installation of specific i686 mesa drivers.
2026-05-01 19:38:51 +02:00

19 lines
576 B
Bash
Executable File

#!/usr/bin/bash
set -eoux pipefail
###############################################################################
# Transaction 3: Steam (i686 dependencies)
# Getrennt, da Architektur-Wechsel (i686) oft eigene Transaktionen erfordern.
###############################################################################
echo "Installing Steam and i686 libraries..."
dnf5 install -y \
steam \
--allowerasing
# --- 2. Die sofortige Bereinigung (WICHTIG!) ---
echo "Cleaning up this layer..."
dnf5 clean all || true
dnf5 autoremove -y || true
rm -rf /tmp/* /var/tmp/* || true