From 0c4465c91a40cbea73048617952df26b476d01f4 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Sun, 20 Jul 2025 08:57:08 -0500 Subject: [PATCH] refactor(createzip): renamed the backend to app now that everything is in one --- scripts/createZip.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/createZip.ps1 b/scripts/createZip.ps1 index d81b7e3..7a94df2 100644 --- a/scripts/createZip.ps1 +++ b/scripts/createZip.ps1 @@ -71,9 +71,9 @@ $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 = "backend\docs"; Destination = "backend\docs\" }, - @{ Source = "backend\frontend"; Destination = "backend\frontend\" }, + @{ Source = "backend\lst_backend.exe"; Destination = "app\lst_backend.exe" }, + @{ Source = "backend\docs"; Destination = "app\docs\" }, + @{ Source = "backend\frontend"; Destination = "app\frontend\" }, @{ Source = "LstWrapper\publish"; Destination = "lstwrapper\" }, #@{ Source = "frontend\.nitro"; Destination = "frontend\.nitro" }, #@{ Source = "frontend\.tanstack"; Destination = "frontend\.tanstack" },