Fix raft notary demo identity generation paths

This commit is contained in:
Andrius Dagys 2017-01-16 13:48:52 +00:00
parent ca1b08ad37
commit e467b3513e

View File

@ -77,7 +77,7 @@ publishing {
task generateNotaryIdentity(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = "net.corda.node.utilities.ServiceIdentityGeneratorKt"
def nodeDirs = ["$deployTo/notary1", "$deployTo/notary2", "$deployTo/notary3"].join(",")
def nodeDirs = ["$deployTo/Notary1", "$deployTo/Notary2", "$deployTo/Notary3"].join(",")
args = [nodeDirs, notaryType, notaryName]
}