From a9299738a991014788b72db7c9afc946633590e2 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Sun, 22 May 2011 13:45:20 -0400 Subject: [PATCH] Make keystore script independent of JDK using BouncyCastle. --- distrib/makekeystore.cmd | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/distrib/makekeystore.cmd b/distrib/makekeystore.cmd index 34a11b2..b2206ef 100644 --- a/distrib/makekeystore.cmd +++ b/distrib/makekeystore.cmd @@ -1,2 +1,2 @@ @del keystore -@keytool -keystore keystore -alias localhost -genkey -keyalg RSA -dname "CN=localhost, OU=Git:Blit, O=Git:Blit, L=Some Town, ST=Some State, C=US" \ No newline at end of file +@java -cp gitblit.jar;"%CD%\ext\*" com.gitblit.MakeCertificate --alias localhost --subject "CN=localhost, OU=Git:Blit, O=Git:Blit, L=Some Town, ST=Some State, C=US" -- Gitblit v1.9.1