fix(julials): import FileWatching on Windows

This commit is contained in:
qwjyh 2024-10-26 02:53:56 +09:00
parent f5efb7cb66
commit 1f600a970a

View file

@ -24,6 +24,9 @@ open(out_path, "w") do io
println(io, "using LanguageServer")
println(io, "using " * join(pkg_ls_deps, ", "))
println(io, "using " * join(pkg_extra, ", "))
if Sys.iswindows()
println(io, "import FileWatching")
end
end
@info "finished writing precompile head file"