- fix: launcher not passing args properly

This commit is contained in:
2024-12-18 12:15:44 -05:00
parent 9735b59598
commit a444fa4558

View File

@@ -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
}