Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit f9f45f5

Browse files
committed
Adding support for master non-registered
1 parent 5c3f8a5 commit f9f45f5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/julia-server.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ if get(Pkg.installed(), "Lint", nothing) == nothing == nothing
1313
rethrow();
1414
end
1515
else
16-
if get(Pkg.installed(), "Lint", nothing) < v"0.3.0"
16+
ver = get(Pkg.installed(), "Lint", nothing)
17+
if ver != v"0.0.0" && ver < v"0.3.0"
1718
print(Base.stderr, "linter-julia-updating-lint");
1819
try
1920
# NOTE: This doesn't appear to be working?

0 commit comments

Comments
 (0)