We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53312c3 commit 324db22Copy full SHA for 324db22
src/leiningen/clojure_lsp/binary.clj
@@ -87,8 +87,8 @@
87
@p))
88
89
(defn ^:private download-server? [server-path server-version-path version]
90
- (or (not (.exists server-path))
91
- (not= (slurp server-version-path) version)))
+ (not= version
+ (try (slurp server-version-path) (catch Exception _ :error-checking-local-version))))
92
93
(defn run! [args]
94
(let [server-path (server-path)
0 commit comments