Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

don't run command -v as binary

+3 -3
+3 -3
crates/typesense/src/lib.rs
··· 12 12 std::env::var("PATH").unwrap_or_default(), 13 13 "~/.rockbox/bin" 14 14 ); 15 - let mut cmd = Command::new("command") 16 - .arg("-v") 17 - .arg("typesense-server") 15 + let mut cmd = Command::new("sh") 16 + .arg("-c") 17 + .arg("command -v typesense-server") 18 18 .env("PATH", &path) 19 19 .stderr(std::process::Stdio::null()) 20 20 .stdout(std::process::Stdio::null())