Skip to content

Commit 9388b7d

Browse files
committed
Fix unsupported Java version message
1 parent 3bdf1f5 commit 9388b7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
;; that sets up the JVM classpaths during installation.
5555
:jvm-opts ~(let [version (System/getProperty "java.version")
5656
[major minor _] (clojure.string/split version #"\.")
57-
unsupported-ex (ex-info "Unsupported major Java version. Expects 8 or 11."
57+
unsupported-ex (ex-info "Unsupported major Java version. Expects 17 or 21."
5858
{:major major
5959
:minor minor})]
6060
(condp = (java.lang.Integer/parseInt major)

0 commit comments

Comments
 (0)