1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Fix the instructions.

This commit is contained in:
Cedric Beust 2016-02-27 19:43:47 -08:00
parent 484ee8ad44
commit 25684d8b06

View file

@ -10,6 +10,7 @@ class KotlinTemplateGenerator : LanguageTemplateGenerator() {
override val templateDescription = "Generate a simple Kotlin project"
override val fileMatch = { f: String -> f.endsWith(".kt") }
override val mainClass = "MainKt"
override val instructions = "Now you can run either `./kobaltw test` or `./kobaltw run`"
override val fileMap = listOf(
FileInfo("src/main/kotlin/" + PACKAGE_NAME.replace(".", "/"), "Main.kt", "kotlin.mustache"),
FileInfo("src/test/kotlin/" + PACKAGE_NAME.replace(".", "/"), "MainTest.kt", "kotlin-test.mustache")