From 2b105ee45a4c75e53e529e08eac3606e430a3c0a Mon Sep 17 00:00:00 2001 From: Pierce Thompson Date: Sat, 22 Jul 2023 10:57:01 -0400 Subject: [PATCH] Update package.ps1 --- package.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.ps1 b/package.ps1 index 0617b21..d8a935e 100644 --- a/package.ps1 +++ b/package.ps1 @@ -25,5 +25,5 @@ Copy-Item -Force -Path $FilesToInclude -Destination "$ZipOutDir" if (!$NoArchive) { $FILE_NAME = "$DistDir/${modId}_v$modVersion.zip" - Compress-Archive -Update -CompressionLevel Fastest -Path "$ZipWorkDir" -DestinationPath "$FILE_NAME" + Compress-Archive -Update -CompressionLevel Fastest -Path "$ZipOutDir" -DestinationPath "$FILE_NAME" }