Skip to content

Commit b19b781

Browse files
puredangerstuarthalloway
authored andcommitted
CLJ-2497 - Print error report location on its own line
Signed-off-by: Stuart Halloway <[email protected]>
1 parent f86ff71 commit b19b781

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clj/clojure/main.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ java -cp clojure.jar clojure.main -i init.clj script.clj args...")
610610
(catch Throwable _)))] ;; ignore, fallback to stderr
611611
(binding [*out* *err*]
612612
(if err-path
613-
(println (str message "Full report at: " err-path))
613+
(println (str message (System/lineSeparator) "Full report at:" (System/lineSeparator) err-path))
614614
(println (str report-str (System/lineSeparator) message))))
615615
(when exit
616616
(System/exit exit))))

0 commit comments

Comments
 (0)