Skip to content

Commit 6aa6076

Browse files
authored
fix(clean): fix clean up on compilation errors (#20)
1 parent cf80cc8 commit 6aa6076

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.changes/clean.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"eval-stack": patch:fix
3+
---
4+
5+
Fixed `eval-stack` won't clean up the temporary files if failed to compile.

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/case.rs

+5
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ where
4747
)
4848
.await
4949
{
50+
if clean {
51+
if let Err(e) = remove_dir_all(workspace).await {
52+
anyhow::bail!("Failed to remove workspace: {}", e);
53+
}
54+
}
5055
return Ok(vec![JudgeResult {
5156
status: JudgeStatus::CompileError {
5257
message: e.to_string(),

0 commit comments

Comments
 (0)