added fsanitize params

This commit is contained in:
JOLIMAITRE Matthieu 2022-10-17 23:05:13 +02:00
parent c71feec15f
commit 6a242e1e84
4 changed files with 13 additions and 3 deletions

View file

@ -93,7 +93,8 @@ impl RunTask {
}
pub fn run(self) -> Result<(), ExitStatus> {
let mut command = Command::new(self.file);
let mut command = Command::new("sh");
command.args(["-c", self.file.to_str().unwrap()]);
if self.verbose {
log_command_run(&command);
log_separator_top();