fix: resolve typo in bun_executor.rs error message (#3744)

This commit is contained in:
Lucian Buzzo
2024-05-15 14:30:26 +01:00
committed by GitHub
parent 6ff6a603f7
commit 9d0f643dfd
+1 -1
View File
@@ -535,7 +535,7 @@ pub async fn handle_bun_job(
let splitted = reqs.split(BUN_LOCKB_SPLIT).collect::<Vec<&str>>();
if splitted.len() != 2 {
return Err(error::Error::ExecutionErr(
format!("Invalid requirements, expectd to find //bun.lockb split pattern in reqs. Found: |{reqs}|")
format!("Invalid requirements, expected to find //bun.lockb split pattern in reqs. Found: |{reqs}|")
));
}
let _ = write_file(job_dir, "package.json", &splitted[0]).await?;