chore: windows linting

This commit is contained in:
zhom
2025-07-28 02:28:29 +04:00
parent ca4968a842
commit f33e60dcf7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -640,7 +640,7 @@ impl BundlerTestHelper {
#[cfg(windows)]
{
let _ = std::process::Command::new("taskkill")
.args(&["/F", "/PID", &child_id.to_string()])
.args(["/F", "/PID", &child_id.to_string()])
.output();
}
+1 -1
View File
@@ -1304,7 +1304,7 @@ fn run_with_timeout(cmd: &mut Command, timeout: Duration) -> std::io::Result<std
#[cfg(windows)]
{
let _ = std::process::Command::new("taskkill")
.args(&["/F", "/PID", &child_id.to_string()])
.args(["/F", "/PID", &child_id.to_string()])
.output();
}