fix: Files being included on wrong plats & ps3 postbuild

This commit is contained in:
2026-08-15 22:09:43 -04:00
parent b1d583721f
commit c8ffa527c8
2 changed files with 43 additions and 1 deletions
@@ -59,7 +59,7 @@ $fileCopies = @(
)
foreach ($copy in $fileCopies) {
$src = Join-Path $ProjectDir $copy.Source
$src = $copy.Source
$dst = Join-Path $OutDir $copy.Dest
if (Test-Path $src) {
Copy-Item -Path $src -Destination $dst -Force