From af1e3bb74f35897a4bec63167f8efa8210b13f24 Mon Sep 17 00:00:00 2001 From: Gabriele Musco Date: Wed, 16 Aug 2023 08:19:58 +0000 Subject: [PATCH] fix: set correct env with injected LH_DRIVER --- src/runner.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runner.rs b/src/runner.rs index 09bfb80..10fb64e 100644 --- a/src/runner.rs +++ b/src/runner.rs @@ -98,7 +98,7 @@ impl Runner { ); } Self::new( - Some(profile.environment.clone()), + Some(env), match profile.xrservice_type { XRServiceType::Monado => format!("{pfx}/bin/monado-service", pfx = profile.prefix), XRServiceType::Wivrn => format!("{pfx}/bin/wivrn-server", pfx = profile.prefix),