From a444fa4558def2da91200c3f66d4da55338c00e93fd1c4a3056d554c185ad965 Mon Sep 17 00:00:00 2001 From: raven <7156279+RavenX8@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:15:44 -0500 Subject: [PATCH] - fix: launcher not passing args properly --- launcher/src/launcher.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/launcher.rs b/launcher/src/launcher.rs index 13e864f..ee1bbc1 100644 --- a/launcher/src/launcher.rs +++ b/launcher/src/launcher.rs @@ -23,7 +23,7 @@ fn create_command() -> Command { #[cfg(target_os = "linux")] fn create_command() -> Command { let mut command = Command::new("bottles-cli"); - command.arg("run").arg("-p").arg("TRose").arg("-b").arg("OsIRose"); + command.arg("run").arg("-p").arg("TRose").arg("-b").arg("OsIRose").arg("--args"); command }