We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
master
The current Julia compat entry in Project.toml is:
Project.toml
julia = "1.3"
But https://github.com/StefanKarpinski/PkgServer.jl/blob/master/bin/gen_static.jl#L132 has:
for reg_dir in readdir(depot_regs, join=true)
In Julia 1.3, readdir does not accept keyword arguments, but it does on Julia master.
readdir
So I think you need Julia master or a relatively recent Julia nightly.
The text was updated successfully, but these errors were encountered:
As mentioned in #5 we should probably delete bin/gen_static.jl entirely and have a separate package for static serving.
bin/gen_static.jl
Sorry, something went wrong.
No branches or pull requests
The current Julia compat entry in
Project.toml
is:But https://github.com/StefanKarpinski/PkgServer.jl/blob/master/bin/gen_static.jl#L132 has:
In Julia 1.3,
readdir
does not accept keyword arguments, but it does on Juliamaster
.So I think you need Julia
master
or a relatively recent Julia nightly.The text was updated successfully, but these errors were encountered: