From e8f1f26ab9a527212901cbdf8af03de9f98c69f4 Mon Sep 17 00:00:00 2001 From: Jason Sylvestre Date: Fri, 7 Jun 2024 15:48:13 -0700 Subject: [PATCH] Shows were to delete expired cert files --- Finjector.Web/ClientApp/aspnetcore-https.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Finjector.Web/ClientApp/aspnetcore-https.js b/Finjector.Web/ClientApp/aspnetcore-https.js index 822def99..cabfb071 100644 --- a/Finjector.Web/ClientApp/aspnetcore-https.js +++ b/Finjector.Web/ClientApp/aspnetcore-https.js @@ -22,9 +22,12 @@ if (!certificateName) { process.exit(-1); } + export const certFilePath = path.join(baseFolder, `${certificateName}.pem`); export const keyFilePath = path.join(baseFolder, `${certificateName}.key`); +console.log(`If certificate expires, delete the files here for Certificate: ${certFilePath}`); + // make sure we don't do this in Azure DevOps environment if ( process.env.VITEST_ENV !== "ci" &&