mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-22 10:05:12 +01:00
[ci skip] Fix branch check
This commit is contained in:
parent
840770a350
commit
87db6fc75a
@ -50,7 +50,7 @@ fun Project.latestCommitMessage(): String {
|
||||
fun Project.branchName(): String {
|
||||
val byteOut = ByteArrayOutputStream()
|
||||
exec {
|
||||
commandLine = listOf("git", "branch")
|
||||
commandLine = listOf("git", "symbolic-ref", "--short", "HEAD")
|
||||
standardOutput = byteOut
|
||||
}
|
||||
return byteOut.toString(Charsets.UTF_8.name()).trim()
|
||||
|
Loading…
Reference in New Issue
Block a user