From 268215348aea6fb58f71fa6eb180309e38f8f73e Mon Sep 17 00:00:00 2001 From: Brian Groenke Date: Tue, 7 May 2024 16:24:02 +0200 Subject: [PATCH] Fix doc build (again) --- docs/make.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index 91b523ae..722f4fe9 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -50,7 +50,7 @@ name_lookup = Dict( "cglite_parameter_ensembles.md" => "Running parameter ensembles", ) # change file suffixes -example_scripts = map(f -> split(f, ".")[1]*".jl", keys(name_lookup)) +example_scripts = map(f -> split(f, ".")[1]*".jl", collect(keys(name_lookup))) # generate example docs from scripts example_docfiles = map(filter(∈(example_scripts), readdir(examples_dir))) do f infile = joinpath(examples_dir, f)