Skip to content

Commit fbe86b6

Browse files
authored
Use at-DIR instead of Sys.BINDIR to find UnicodeData.txt in doc build. (#30012)
1 parent f79b0d0 commit fbe86b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/manual/unicode-input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function tab_completions(symbols...)
3131
end
3232
3333
function unicode_data()
34-
file = normpath(Sys.BINDIR, "..", "..", "doc", "UnicodeData.txt")
34+
file = normpath(@__DIR__, "..", "..", "..", "..", "..", "doc", "UnicodeData.txt")
3535
names = Dict{UInt32, String}()
3636
open(file) do unidata
3737
for line in readlines(unidata)

0 commit comments

Comments
 (0)