fix(audio): bound playback handoff queue

This commit is contained in:
2026-07-01 13:39:10 -04:00
parent a78860db15
commit 39b5dafd57
2 changed files with 62 additions and 9 deletions
+4 -4
View File
@@ -2,10 +2,10 @@ use std::process::Command;
fn main() {
println!("cargo:rerun-if-changed=.git/HEAD");
if let Ok(head) = std::fs::read_to_string(".git/HEAD") {
if let Some(reference) = head.strip_prefix("ref: ") {
println!("cargo:rerun-if-changed=.git/{}", reference.trim());
}
if let Ok(head) = std::fs::read_to_string(".git/HEAD")
&& let Some(reference) = head.strip_prefix("ref: ")
{
println!("cargo:rerun-if-changed=.git/{}", reference.trim());
}
let short = Command::new("git")