Skip to content

Commit 3568292

Browse files
committed
Merge branch 'master' into 1.1.x
2 parents a3f0c16 + f4c58e3 commit 3568292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clj/clojure/core.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4570,7 +4570,7 @@
45704570
(when-let [i (:incremental *clojure-version*)]
45714571
(str "." i))
45724572
(when-let [q (:qualifier *clojure-version*)]
4573-
(str "-" q))
4573+
(when (pos? (count q)) (str "-" q)))
45744574
(when (:interim *clojure-version*)
45754575
"-SNAPSHOT")))
45764576

0 commit comments

Comments
 (0)