We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2718bf7 commit 3c65e83Copy full SHA for 3c65e83
src/main/kotlin/kscript/app/Kscript.kt
@@ -251,7 +251,7 @@ private fun versionCheck() {
251
fun padVersion(version: String) = java.lang.String.format("%03d%03d%03d", *version.split(".").map { Integer.valueOf(it) }.toTypedArray())
252
253
if (padVersion(latestVersion) > padVersion(KSCRIPT_VERSION)) {
254
- info("""\nA new version (v${latestVersion}) of kscript is available. Use 'kscript --self-update' to update your local kscript installation""")
+ info("""A new version (v${latestVersion}) of kscript is available. Use 'kscript --self-update' to update your local kscript installation""")
255
}
256
257
0 commit comments