chore(release): release version 1.0.24 (#2552)

This commit is contained in:
Yingjie He
2025-05-15 14:41:28 -07:00
committed by GitHub
parent d957207a77
commit b52af12910
6 changed files with 15 additions and 23 deletions
+1 -2
View File
@@ -4,7 +4,6 @@ use include_dir::{include_dir, Dir};
use serde::{Deserialize, Serialize};
use std::fs;
use std::io;
use std::io::ErrorKind;
use std::path::Path;
use std::path::PathBuf;
use std::process::Command;
@@ -207,7 +206,7 @@ impl BenchmarkWorkDir {
Ok(())
} else {
let error_message = String::from_utf8_lossy(&output.stderr).to_string();
Err(io::Error::new(ErrorKind::Other, error_message))
Err(io::Error::other(error_message))
}
}