Added Kotlin version.

This commit is contained in:
Erik C. Thauvin 2022-04-01 20:01:44 -07:00
parent c5c1e939c0
commit eb02ede6a4
2 changed files with 4 additions and 5 deletions

View file

@ -43,8 +43,7 @@ class Versions : AbstractCommand() {
"Version : ${ReleaseInfo.VERSION} (${ReleaseInfo.BUILDDATE.toIsoLocalDate()})",
"Platform : ${System.getProperty("os.name")} ${System.getProperty("os.version")}" +
" (${System.getProperty("os.arch")})",
"Runtime : ${System.getProperty("java.runtime.name")} ${System.getProperty("java.runtime.version")}" +
" (${System.getProperty("java.vendor")})"
"Runtimes : Java ${System.getProperty("java.runtime.version")}, Kotlin " + KotlinVersion.CURRENT
)
override val name = "versions"
override val help = listOf("To view the versions data (bot, platform, java, etc.):", helpFormat("%c $name"))