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 b03333c commit 134e3caCopy full SHA for 134e3ca
src/leiningen/clojure_lsp/binary.clj
@@ -75,8 +75,8 @@
75
(recur)))))
76
(future
77
(with-open [out-rdr ^BufferedReader (io/reader (:err p))]
78
- (loop []
79
- (binding [*out* *err*]
+ (binding [*out* *err*]
+ (loop []
80
(when-let [line (.readLine out-rdr)]
81
(println line)
82
(recur))))))
@@ -87,7 +87,7 @@
87
server-version (server-version)]
88
(when-not (.exists server-path)
89
(binding [*out* *err*]
90
- (println "Downloading and caching clojure-lsp..."))
+ (println "Downloading and caching clojure-lsp to" (str server-path)))
91
(let [t (System/currentTimeMillis)]
92
(download! server-path server-version)
93
0 commit comments