Skip to content

Commit

Permalink
Fix #311
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrebouchard committed Jan 24, 2025
1 parent f5dad4a commit ee80bf3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/utils/exec_folder.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ function next_exec_folder()
end

function _ensure_symlinked(exec)
rm("results/latest", force = true)
try
rm("results/latest", force = true)
catch e # Needed because of Issue # 311
end

Check warning on line 21 in src/utils/exec_folder.jl

View check run for this annotation

Codecov / codecov/patch

src/utils/exec_folder.jl#L20-L21

Added lines #L20 - L21 were not covered by tests
safelink(exec, "results/latest")
end

Expand Down

0 comments on commit ee80bf3

Please sign in to comment.