From 5cb71e55476f91a48d095f80be2cea3b6793f8e6 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Wed, 16 Jul 2025 09:51:33 -0500 Subject: [PATCH] ci(createzip): changes to include the script folder --- scripts/createZip.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/createZip.ps1 b/scripts/createZip.ps1 index 489c228..11cde7b 100644 --- a/scripts/createZip.ps1 +++ b/scripts/createZip.ps1 @@ -79,7 +79,10 @@ $filesToCopy = @( @{ Source = "frontend\public"; Destination = "frontend\public" }, @{ Source = "package.json"; Destination = "package.json" }, @{ Source = "CHANGELOG.md"; Destination = "CHANGELOG.md" }, - @{ Source = "README.md"; Destination = "README.md" } + @{ Source = "README.md"; Destination = "README.md" }, + # scripts to be copied over + @{ Source = "scripts\tmp"; Destination = "scripts\tmp" } + @{ Source = "scripts\iisControls.ps1"; Destination = "scripts\iisControls.ps1" } ) foreach ($file in $filesToCopy) {