This commit is contained in:
Matt Soucy 2020-07-03 12:39:48 -04:00
parent abed68e029
commit 4db29864ba

View File

@ -34,7 +34,8 @@ val DEFAULT_INTERESTING_RES = mutableListOf(
"\\.perl$",
"\\.rb$",
"\\.sh$",
"\\.js$"
"\\.js$",
"\\.kt$"
)
fun validateGit(exe : String) : String {
@ -153,5 +154,8 @@ fun main(args: Array<String>) = mainBody {
summaryModel.summarize(analysis)
}
}
// Render summary
System.err.println("Done, summary is in ${outDir}/index.html")
}
}