We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
install()
1 parent 9dd3c7c commit e6b44c8Copy full SHA for e6b44c8
src/PkgAuthentication.jl
@@ -858,7 +858,8 @@ julia> PkgAuthentication.install("my-pkg-server.example.com"; maxcount = 5)
858
"""
859
function install(server::AbstractString; maxcount::Integer=3)
860
ENV[pkg_server_env_var_name] = server
861
- return install(; maxcount=maxcount)
+ install(; maxcount=maxcount)
862
+ return nothing
863
end
864
865
@@ -897,6 +898,7 @@ function install(; maxcount::Integer=3)
897
898
# old Julia versions don't support auth hooks, so let's authenticate now and be done with it
899
authenticate(server)
900
901
902
903
904
function generate_auth_handler(maxcount::Integer)
0 commit comments