From 70e376c939737b967d07f7251d56966fd1dfb8e8 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Wed, 16 Jul 2025 06:56:13 -0500 Subject: [PATCH] fix(build): removed the * at the end of source so no more errors --- scripts/release.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.ps1 b/scripts/release.ps1 index 355f878..489c228 100644 --- a/scripts/release.ps1 +++ b/scripts/release.ps1 @@ -72,7 +72,7 @@ $tempStageDir = New-Item -ItemType Directory -Path (Join-Path $env:TEMP "lst_sta # Copy files to organized structure $filesToCopy = @( @{ Source = "backend\lst_backend.exe"; Destination = "backend\lst_backend.exe" }, - @{ Source = "LstWrapper\publish\*"; Destination = "lstwrapper\" }, + @{ Source = "LstWrapper\publish"; Destination = "lstwrapper\" }, @{ Source = "frontend\.nitro"; Destination = "frontend\.nitro" }, @{ Source = "frontend\.tanstack"; Destination = "frontend\.tanstack" }, @{ Source = "frontend\.output"; Destination = "frontend\.output" },