From 5187a0097183522c4c9a995800b7ba2f9f68821b Mon Sep 17 00:00:00 2001 From: Gabriele Musco Date: Wed, 8 Jan 2025 07:25:02 +0100 Subject: [PATCH] fix: remove canonicalize from get steamvr bin dir path function --- src/paths.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paths.rs b/src/paths.rs index fed075b..6384380 100644 --- a/src/paths.rs +++ b/src/paths.rs @@ -102,7 +102,7 @@ fn get_steamvr_base_dir() -> anyhow::Result { } pub fn get_steamvr_bin_dir_path() -> anyhow::Result { - let res = get_steamvr_base_dir()?.join("bin/linux64").canonicalize()?; + let res = get_steamvr_base_dir()?.join("bin/linux64"); if !res.is_dir() { bail!("SteamVR bin dir `{}` does not exist", res.to_string_lossy()); }