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

Commit 461f4ce

Browse files
committed
Force master repository of Lint.jl
1 parent 578a160 commit 461f4ce

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/julia-server.jl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ if get(Pkg.installed(), "Lint", nothing) == nothing == nothing
1414
end
1515
else
1616
ver = get(Pkg.installed(), "Lint", nothing)
17-
if ver != v"0.0.0" && ver < v"0.3.0"
17+
if ver != v"0.0.0" # && ver < v"0.3.0" # wait until registered
1818
print(Base.stderr, "linter-julia-updating-lint");
1919
try
20-
# NOTE: This doesn't appear to be working?
21-
Pkg.update(LintPkg);
20+
Pkg.add(LintPkg);
21+
# Wait until registered
22+
# Pkg.update(LintPkg);
2223
catch
2324
print(Base.stderr, "linter-julia-msg-update");
2425
rethrow();

0 commit comments

Comments
 (0)