We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 567c607 commit deada78Copy full SHA for deada78
Clojure/Clojure.Source/clojure/core_clr.clj
@@ -370,7 +370,7 @@
370
(let [[major minor build] (.Split s (char-array [\.]))]
371
{:major (when major (Int32/Parse ^String major))
372
:minor (when minor (Int32/Parse ^String minor))
373
- :incremental (when build (Int32/Parse ^String build))}))
+ :incremental (when build (Int32/Parse ^String (re-find #"^\d+" build)))}))
374
375
(defn- parse-framework-description []
376
(let [^String descr framework-description
0 commit comments