Skip to content

Commit 4a214b1

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 ensured this for Proton, but forgot to do the same for Steam Runtime.
1 parent 2526067 commit 4a214b1

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 not being available in the bwrap container if it was installed under a subdirectory of one of the blacklisted root directories
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)