add missing semi-colon

This commit is contained in:
Jonathan Barrow 2024-02-22 11:57:00 -05:00
parent f2259cc05b
commit 12024d8df4
No known key found for this signature in database
GPG Key ID: E86E9FE9049C741F

View File

@ -206,7 +206,7 @@ function forgeCertificateChain(options) {
siteCertificate.sign(caPrivateKey, md.sha1.create()); // TODO - Make this configurable? What other signatures work for the Wii U
// * Create the cert chain
const chain = `${pki.certificateToPem(siteCertificate)}\n${pki.certificateToPem(forgedCA)}\n`
const chain = `${pki.certificateToPem(siteCertificate)}\n${pki.certificateToPem(forgedCA)}\n`;
// * Save everything to disk
// TODO - Write public keys?