ci: auto-update Homebrew tap on release #37

Merged
razvandimescu merged 2 commits from fix/windows-clippy-and-ci into main 2026-04-07 03:46:55 +08:00
Showing only changes of commit 4630f7f00d - Show all commits

View File

@@ -1420,7 +1420,10 @@ Wireless LAN adapter Wi-Fi:
let unit = include_str!("../numa.service"); let unit = include_str!("../numa.service");
assert!(plist.contains("{{exe_path}}"), "plist missing placeholder"); assert!(plist.contains("{{exe_path}}"), "plist missing placeholder");
assert!(unit.contains("{{exe_path}}"), "unit file missing placeholder"); assert!(
unit.contains("{{exe_path}}"),
"unit file missing placeholder"
);
let result = replace_exe_path(plist).expect("replace_exe_path failed for plist"); let result = replace_exe_path(plist).expect("replace_exe_path failed for plist");
assert!(!result.contains("{{exe_path}}")); assert!(!result.contains("{{exe_path}}"));