Skip to content

Commit

Permalink
rename var for clarity.
Browse files Browse the repository at this point in the history
  • Loading branch information
weinbe58 committed Jan 23, 2024
1 parent f5cc01b commit 9d98c46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/src/example.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9d98c46

Please sign in to comment.