Skip to content

Commit 262aa6a

Browse files
authored
fix infinite loops for custom folder and buildfolder (#175)
close #174
1 parent 9c4f0f1 commit 262aa6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ function servedocs(;
228228
if isempty(skip_dirs) && !isempty(skip_dir)
229229
skip_dirs = [skip_dir]
230230
end
231-
push!(skip_dirs, joinpath("docs", "build"))
231+
push!(skip_dirs, joinpath(foldername, buildfoldername))
232232
skip_dirs = abspath.(skip_dirs)
233233
skip_files = abspath.(skip_files)
234234
include_dirs = abspath.(include_dirs)

0 commit comments

Comments
 (0)