From 450f6fb26711e7d68befe2c0749ce9839c04608a Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 8 Aug 2024 19:55:48 -0400 Subject: [PATCH] Fix issue in Windows build script --- publish-win.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publish-win.ps1 b/publish-win.ps1 index e472f49..51feee1 100644 --- a/publish-win.ps1 +++ b/publish-win.ps1 @@ -114,11 +114,11 @@ if (!$NO_ARCHIVE.IsPresent) { # Only include Debug if building all if ($USE_ALL.IsPresent) { - Set-Location -Path $BUILD_FOLDER\Test\bin\Debug\${FRAMEWORK}\${RUNTIME}\publish\ + Set-Location -Path $BUILD_FOLDER\NDecrypt\bin\Debug\${FRAMEWORK}\${RUNTIME}\publish\ 7z a -tzip $BUILD_FOLDER\NDecrypt_${FRAMEWORK}_${RUNTIME}_debug.zip * } - Set-Location -Path $BUILD_FOLDER\Test\bin\Release\${FRAMEWORK}\${RUNTIME}\publish\ + Set-Location -Path $BUILD_FOLDER\NDecrypt\bin\Release\${FRAMEWORK}\${RUNTIME}\publish\ 7z a -tzip $BUILD_FOLDER\NDecrypt_${FRAMEWORK}_${RUNTIME}_release.zip * } }