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 d4245b7 commit af084ceCopy full SHA for af084ce
src/leiningen/clojure_lsp/binary.clj
@@ -69,18 +69,16 @@
69
(let [p (process/process {:cmd (concat [(.getAbsolutePath path)] args)})]
70
(future
71
(with-open [out-rdr ^BufferedReader (io/reader (:out p))]
72
- (loop [max 10]
+ (loop []
73
(when-let [line (.readLine out-rdr)]
74
(println line)
75
- (when (pos? max)
76
- (recur (dec max)))))))
+ (recur)))))
77
78
(with-open [out-rdr ^BufferedReader (io/reader (:err p))]
79
80
81
82
83
84
@p))
85
86
(defn run! [args]
0 commit comments