build: remove devNull variable

This is an imperceptible optimization by reducing the scope of the null stream object
This commit is contained in:
Jonas Tobias Hopusch 2022-03-12 12:24:54 +01:00
parent 8c6d65f147
commit e66e3b8483
Failed to generate hash of commit
1 changed files with 1 additions and 2 deletions

View File

@ -20,11 +20,10 @@ dependencies {
fun versionBanner(): String {
val os = ByteArrayOutputStream()
val devNull = OutputStream.nullOutputStream()
project.exec {
commandLine = "git describe --tags --always --dirty --abbrev".split(" ")
standardOutput = os
errorOutput = devNull
errorOutput = OutputStream.nullOutputStream()
}
return String(os.toByteArray()).trim()
}