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