Skip to content

Commit 141053e

Browse files
committed
don't strip -- Pkg.pkg_server doesn't
1 parent 84e26dd commit 141053e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PkgAuthentication.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ abstract type Failure <: State end
2323
## authentication state machine
2424

2525
function _assert_pkg_server_env_var_is_set()
26-
if isempty(strip(get(ENV, pkg_server_env_var_name, "")))
26+
if isempty(get(ENV, pkg_server_env_var_name, ""))
2727
msg = "The `$(pkg_server_env_var_name)` environment variable must be set and non-empty"
2828
throw(ErrorException(msg))
2929
end

0 commit comments

Comments
 (0)