Skip to content

Commit c2f5db2

Browse files
committed
Mount Steam Runtime in bwrap container
Mount Steam Runtime explicitly in bwrap container. This is necessary because the installation can exist under one of the blacklisted root directories (unlikely, but possible). We already made sure of this for Proton, but forgot to do the same for Steam Runtime. Fixes #471
1 parent 2526067 commit c2f5db2

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
77
## [Unreleased]
88
### Fixed
99
- Fix Steam installation being prompted twice when using `protontricks-launch`
10+
- Fix Steam Runtime crash if it was installed under a blacklisted root directory (eg. `/run/<path>` instead of `/run/media/<path>`)
1011

1112
## [1.14.0] - 2026-02-22
1213
### Added

src/protontricks/data/scripts/bwrap_launcher.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ BLACKLISTED_ROOT_DIRS=(
3535
)
3636

3737
ADDITIONAL_MOUNT_DIRS=(
38-
/run/media "$PROTON_PATH" "$WINEPREFIX"
38+
/run/media "$PROTON_PATH" "$WINEPREFIX" "$STEAM_RUNTIME_PATH"
3939
)
4040

4141
mount_dirs=()

0 commit comments

Comments
 (0)