1
Fork 0
mirror of https://github.com/xivdev/EXDSchema.git synced 2025-06-07 00:27:46 +00:00
EXDSchema/patches/relations.ps1

6 lines
211 B
PowerShell
Raw Normal View History

2024-08-06 08:43:54 -07:00
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