1
Fork 0
mirror of https://github.com/xivdev/EXDSchema.git synced 2025-06-06 16:17:46 +00:00
EXDSchema/patches/relations.ps1
2024-10-03 08:39:48 -07:00

6 lines
No EOL
211 B
PowerShell

cd ..
Get-ChildItem -Directory Schemas | ForEach-Object {
$dir = $_
Get-ChildItem -File patches/*.patch | ForEach-Object { git apply "patches/$($_.Name)" --directory "Schemas/$($dir.Name)" }
}
cd patches