From 9d98c4651df0095cc68138332658bf22b7d442eb Mon Sep 17 00:00:00 2001 From: Phillip Weinberg Date: Mon, 22 Jan 2024 19:22:59 -0500 Subject: [PATCH] rename var for clarity. --- .ci/src/example.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/src/example.jl b/.ci/src/example.jl index db66bddaa..fc1a21ef3 100644 --- a/.ci/src/example.jl +++ b/.ci/src/example.jl @@ -164,11 +164,11 @@ in parallel. # then we run the build in one process # so that we can share compile results foreach_example() do path - tutorial_dir = splitpath(path)[end] + example_dir = splitpath(path)[end] for subdir in readdir(path) fullpath = joinpath(path, subdir) tutorial_path = - isdir(fullpath) && subdir == "data" && run(`cp -r $fullpath $(joinpath(build_dir, tutorial_dir))`) + isdir(fullpath) && subdir == "data" && run(`cp -r $fullpath $(joinpath(build_dir, example_dir))`) end return dev(path) end