Skip to content

Commit 6b5d9a9

Browse files
committed
fix
1 parent b054893 commit 6b5d9a9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/DocumentationGenerator.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,11 @@ function build_documentation(
159159
pid = getpid(proc)
160160
pgid = get_pgid(pid)
161161
@info "detected session id for process $(pid): $(pgid)"
162-
wait(proc, false)
162+
if VERSION < v"1.11"
163+
wait(proc)
164+
else
165+
wait(proc, false)
166+
end
163167
end
164168
end
165169

0 commit comments

Comments
 (0)