Skip to content

Commit

Permalink
fix infinite loops for custom folder and buildfolder
Browse files Browse the repository at this point in the history
close #174
  • Loading branch information
cserteGT3 committed Dec 19, 2023
1 parent 9c4f0f1 commit f699542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ function servedocs(;
if isempty(skip_dirs) && !isempty(skip_dir)
skip_dirs = [skip_dir]
end
push!(skip_dirs, joinpath("docs", "build"))
push!(skip_dirs, joinpath(foldername, buildfoldername))
skip_dirs = abspath.(skip_dirs)
skip_files = abspath.(skip_files)
include_dirs = abspath.(include_dirs)
Expand Down

0 comments on commit f699542

Please sign in to comment.