mirror of
https://github.com/xivdev/EXDSchema.git
synced 2025-06-07 16:47:45 +00:00
6 lines
211 B
PowerShell
6 lines
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
|