aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/northstar/install.rs
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2023-07-18 13:59:49 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2023-07-18 13:59:49 +0200
commit0cd98b60d77fedb5755ccb8cb827a37d4360c9dd (patch)
tree7e0fa2b5b51db3cf8eb29749ba030a2a9f046a0a /src-tauri/src/northstar/install.rs
parent58b8dce1422ac2ddd31a6bea88fad64bf2920e1c (diff)
parentdfa5af1746546d388a85081fae499c28521a20ea (diff)
downloadFlightCore-0cd98b60d77fedb5755ccb8cb827a37d4360c9dd.tar.gz
FlightCore-0cd98b60d77fedb5755ccb8cb827a37d4360c9dd.zip
Merge branch 'main' into feat/read-packages-dir
Diffstat (limited to 'src-tauri/src/northstar/install.rs')
-rw-r--r--src-tauri/src/northstar/install.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src-tauri/src/northstar/install.rs b/src-tauri/src/northstar/install.rs
index 875458dd..c77fd538 100644
--- a/src-tauri/src/northstar/install.rs
+++ b/src-tauri/src/northstar/install.rs
@@ -168,6 +168,22 @@ pub fn find_game_install_location() -> Result<GameInstall, String> {
// Attempt parsing Steam library directly
match steamlocate::SteamDir::locate() {
Some(mut steamdir) => {
+ #[cfg(target_os = "linux")]
+ {
+ let snap_dir = match std::env::var("SNAP_USER_DATA") {
+ Ok(snap_dir) => std::path::PathBuf::from(snap_dir),
+ Err(_) => match dirs::home_dir() {
+ Some(path) => path,
+ None => std::path::PathBuf::new(),
+ }
+ .join("snap"),
+ };
+
+ if steamdir.path.starts_with(snap_dir) {
+ log::warn!("Found Steam installed via Snap, you may encounter issues");
+ }
+ }
+
let titanfall2_steamid = TITANFALL2_STEAM_ID.parse().unwrap();
match steamdir.app(&titanfall2_steamid) {
Some(app) => {