We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a2a5b1 commit a583658Copy full SHA for a583658
src/redox.rs
@@ -1,7 +1,7 @@
1
use std::{ffi::OsStr, process::Command};
2
3
pub fn commands<T: AsRef<OsStr>>(path: T) -> Vec<Command> {
4
- let mut cmd = Command::new("/ui/bin/launcher");
+ let mut cmd = Command::new("launcher");
5
cmd.arg(path.as_ref());
6
vec![cmd]
7
}
0 commit comments