Build: Remove hack to touch keystore before it is created

This will be fixed in ES with elastic/elasticsearchelastic/elasticsearch#15089

Original commit: elastic/x-pack-elasticsearch@55b42a7ad4
This commit is contained in:
Ryan Ernst 2015-11-28 18:07:37 -08:00
parent ad697c077e
commit a67aebc9fc
1 changed files with 1 additions and 6 deletions

View File

@ -13,11 +13,6 @@ File cert = new File(project.buildDir, 'cert/test-node.csr')
File signedCert = new File(project.buildDir, 'cert/test-node-signed.csr')
File keystore = new File(project.buildDir, 'keystore/test-node.jks')
// we touch keystore because otherwise it fails, extraConfigFile does not exist
// this tricks some broken compile-time check into just moving along: we nuke this stuff before we actually generate
keystore.parentFile.mkdirs()
keystore.createNewFile()
String caConfigData = """
[ ca ]
default_ca = CA_default
@ -187,4 +182,4 @@ integTest {
return true
}
}
}
}