Add initial listener classes

This commit is contained in:
Len
2022-06-07 14:38:30 +02:00
parent a8b980b938
commit 68598777b1
3 changed files with 63 additions and 4 deletions
+4 -4
View File
@@ -47,9 +47,9 @@ bukkit {
fun gitCommit(): String {
val os = ByteArrayOutputStream()
// project.exec {
// commandLine = "git rev-parse --short HEAD".split(" ")
// standardOutput = os
// }
project.exec {
commandLine = "git rev-parse --short HEAD".split(" ")
standardOutput = os
}
return String(os.toByteArray()).trim()
}