fix(julials): import FileWatching on Windows
This commit is contained in:
parent
f5efb7cb66
commit
1f600a970a
1 changed files with 3 additions and 0 deletions
|
@ -24,6 +24,9 @@ open(out_path, "w") do io
|
||||||
println(io, "using LanguageServer")
|
println(io, "using LanguageServer")
|
||||||
println(io, "using " * join(pkg_ls_deps, ", "))
|
println(io, "using " * join(pkg_ls_deps, ", "))
|
||||||
println(io, "using " * join(pkg_extra, ", "))
|
println(io, "using " * join(pkg_extra, ", "))
|
||||||
|
if Sys.iswindows()
|
||||||
|
println(io, "import FileWatching")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
@info "finished writing precompile head file"
|
@info "finished writing precompile head file"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue