From 42e85e5886e36867ad90b81c6c01e1005c815f8f Mon Sep 17 00:00:00 2001 From: DrakiaXYZ Date: Wed, 6 Mar 2024 00:12:05 +0000 Subject: [PATCH] Fix build script copying Aki_Data into a nested Aki_Data folder (!43) Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Launcher/pulls/43 Co-authored-by: DrakiaXYZ Co-committed-by: DrakiaXYZ --- project/build.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/build.ps1 b/project/build.ps1 index 83d465c..f3cc803 100644 --- a/project/build.ps1 +++ b/project/build.ps1 @@ -14,9 +14,9 @@ foreach ($folder in $foldersToCreate) { } # Move built files to the build folder -Copy-Item -Path "$launcherExeFolder\Aki.Launcher.exe" -Destination $buildFolder -Copy-Item -Path $launcherAssetFolder -Destination "$buildFolder\Aki_Data" -Recurse +Copy-Item -Path "$launcherExeFolder\Aki.Launcher.exe" -Destination "$buildFolder" +Copy-Item -Path "$launcherAssetFolder" -Destination "$buildFolder" -Recurse # (If any new DLLs need to be copied, add here) # Write the contents of the license file to a txt in the build folder. -Get-Content $licenseFile | Out-File "$buildFolder\LICENSE-Launcher.txt" +Get-Content "$licenseFile" | Out-File "$buildFolder\LICENSE-Launcher.txt"