We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9911393 commit 58bc10fCopy full SHA for 58bc10f
examples/benchmarking/runcompare.jl
@@ -3,7 +3,7 @@ reports_dir = (length(ARGS) > 0 ? ARGS[1] : "examples/benchmarking")
3
4
isdir(reports_dir) || throw(error("Benchmark results folder $reports_dir not found"))
5
6
-bfiles = filter!(f->ismatch(r"^benchmark_runs_\d.+\.csv$", f), readdir(reports_dir))
+bfiles = filter!(f->occursin(r"^benchmark_runs_\d.+\.csv$", f), readdir(reports_dir))
7
8
isempty(bfiles) && throw(error("No benchmark runs found"))
9
bf = joinpath(reports_dir, bfiles[end])
0 commit comments