mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-25 00:42:33 +00:00
feat: Xbox Postbuild Script and Fix Windows64 (#5)
This fully removes debug features on release Fixes Windows64 Builds Adds Xbox 360 Postbuild Script Removes MinecraftConsoles.sdf --------- Co-authored-by: str1k3r <[email protected]> Reviewed-on: https://git.neolegacy.dev/Project-Elysium/main/pulls/5 Co-authored-by: str1k3r <[email protected]> Co-committed-by: str1k3r <[email protected]>
This commit is contained in:
committed by
pieeebot
co-authored by
str1k3r
parent
d26bd9d38c
commit
62bcae6ce9
@@ -1 +1,52 @@
|
||||
// Currently a stub as we dont know what would go here
|
||||
param(
|
||||
[string]$OutDir,
|
||||
[string]$ProjectDir
|
||||
)
|
||||
|
||||
Write-Host "Xbox Postbuild script started. Output Directory: $OutDir, Project Directory: $ProjectDir"
|
||||
|
||||
$directories = @(
|
||||
"res",
|
||||
"Tutorial"
|
||||
)
|
||||
|
||||
foreach ($dir in $directories) {
|
||||
New-Item -ItemType Directory -Path (Join-Path $OutDir $dir) -Force | Out-Null
|
||||
}
|
||||
|
||||
$copies = @(
|
||||
@{ Source = "Common\res"; Dest = "res" }
|
||||
)
|
||||
|
||||
foreach ($copy in $copies) {
|
||||
$src = Join-Path $ProjectDir $copy.Source
|
||||
$dst = Join-Path $OutDir $copy.Dest
|
||||
|
||||
if (Test-Path $src) {
|
||||
xcopy /q /y /i /s /e /d "$src" "$dst" 2>$null
|
||||
}
|
||||
}
|
||||
|
||||
$fileCopies = @(
|
||||
@{ Source = "Xbox\kinect\speech\nuisp1031"; Dest = "nuisp1031" },
|
||||
@{ Source = "Xbox\kinect\speech\nuisp1033"; Dest = "nuisp1033" },
|
||||
@{ Source = "Xbox\kinect\speech\nuisp1036"; Dest = "nuisp1036" },
|
||||
@{ Source = "Xbox\kinect\speech\nuisp1041"; Dest = "nuisp1040" },
|
||||
@{ Source = "Xbox\kinect\speech\nuisp1041"; Dest = "nuisp1041" },
|
||||
@{ Source = "Xbox\kinect\speech\nuisp2057"; Dest = "nuisp2057" },
|
||||
@{ Source = "Xbox\kinect\speech\nuisp2058"; Dest = "nuisp2058" },
|
||||
@{ Source = "Xbox\kinect\speech\nuisp3081"; Dest = "nuisp3081" },
|
||||
@{ Source = "Xbox\kinect\speech\nuisp3082"; Dest = "nuisp3082" },
|
||||
@{ Source = "Xbox\kinect\speech\nuisp3084"; Dest = "nuisp3084" },
|
||||
@{ Source = "XboxMedia\AvatarAwards"; Dest = "AvatarAwards" },
|
||||
@{ Source = "XboxMedia\XZP\TMSFiles.xzp"; Dest = "TMSFiles.xzp" },
|
||||
@{ Source = "Common\Tutorial\Tutorial"; Dest = "Tutorial\Tutorial" }
|
||||
)
|
||||
|
||||
foreach ($copy in $fileCopies) {
|
||||
$src = Join-Path $ProjectDir $copy.Source
|
||||
$dst = Join-Path $OutDir $copy.Dest
|
||||
if (Test-Path $src) {
|
||||
Copy-Item -Path $src -Destination $dst -Force
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user