chore: Prefix LD_PRELOAD with env in bazzite-steam-runtime

This commit is contained in:
Kyle Gospodnetich 2023-08-10 20:32:30 -07:00
parent bca7001423
commit 4216f90def

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
if [[ "$XDG_SESSION_TYPE" = "wayland" ]]; then
LD_PRELOAD=/usr/lib/extest/libextest.so /usr/bin/steam-runtime "$*"
env LD_PRELOAD=/usr/lib/extest/libextest.so /usr/bin/steam-runtime "$*"
else
/usr/bin/steam-runtime "$*"
fi