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

Commit 19f6812

Browse files
authored
Merge pull request #79 from AtomLinter/dev-Amin
Force master repository of Lint.jl
2 parents 578a160 + b9564c9 commit 19f6812

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
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();

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "linter-julia",
33
"main": "./lib/index.js",
4-
"version": "0.8.1",
4+
"version": "0.8.2",
55
"private": true,
66
"description": "Lint.jl support for Atom using the linter package",
77
"keywords": [

0 commit comments

Comments
 (0)