Provide commit hash to seed node.

Provide full hash without truncating

Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
HenrikJannsen 2022-12-07 11:46:26 -05:00
parent a925017e4b
commit a1bbac41ea
No known key found for this signature in database
GPG Key ID: 02AA2BAE387C8307

View File

@ -235,7 +235,7 @@ configure(project(':common')) {
ext.getHash = {
def p1 = 'git rev-parse HEAD'.execute()
p1.waitFor()
return p1.text.substring(0,7)
return p1.text
}
jar.manifest.attributes(
@ -516,6 +516,10 @@ configure(project(':desktop')) {
configure(project(':seednode')) {
apply plugin: 'com.github.johnrengelman.shadow'
jar.manifest.attributes(
"Implementation-Title": project.name,
"Implementation-Version": version)
mainClassName = 'bisq.seednode.SeedNodeMain'
dependencies {