aboutsummaryrefslogtreecommitdiff
path: root/libs/nak/src/installers
diff options
context:
space:
mode:
Diffstat (limited to 'libs/nak/src/installers')
-rw-r--r--libs/nak/src/installers/prefix_setup.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/nak/src/installers/prefix_setup.rs b/libs/nak/src/installers/prefix_setup.rs
index 468aaa2..6c48b09 100644
--- a/libs/nak/src/installers/prefix_setup.rs
+++ b/libs/nak/src/installers/prefix_setup.rs
@@ -284,9 +284,9 @@ fn initialize_prefix_with_proton(
log_install(&format!("STEAM_COMPAT_DATA_PATH={:?}", compat_data_path));
- // Collect all env vars upfront so build_command can forward them
- // via --env= flags in Flatpak mode.
- let mut envs: Vec<(&str, String)> = vec![
+ // Collect all env vars upfront so build_command can set them on the
+ // process (inherited by SLR/pressure-vessel into the container).
+ let envs: Vec<(&str, String)> = vec![
("STEAM_COMPAT_CLIENT_INSTALL_PATH", steam_root.clone()),
("STEAM_COMPAT_DATA_PATH", compat_data_path.display().to_string()),
("SteamAppId", app_id.to_string()),