Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ca_roots.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ of these variables that is set (whether the path exists or not). If
are ignored (as if unset); if the other variables are set to the empty string,
they behave is if they are not set.
"""
ca_roots()::Union{Nothing,String} = _ca_roots(true)
ca_roots() = _ca_roots(true)::Union{Nothing,String}

"""
ca_roots_path() :: String
Expand All @@ -48,7 +48,7 @@ of these variables that is set (whether the path exists or not). If
are ignored (as if unset); if the other variables are set to the empty string,
they behave is if they are not set.
"""
ca_roots_path()::String = _ca_roots(false)
ca_roots_path() = _ca_roots(false)::String

# NOTE: this has to be a function not a constant since the
# value of Sys.BINDIR changes from build time to run time.
Expand Down
Loading