Add support for sorting files in root of repo (#137)

This commit is contained in:
Simon Wåhlin 2023-07-13 14:19:27 +02:00 коммит произвёл GitHub
Родитель 47b9d50d61
Коммит 02b5edcf7b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -28,7 +28,7 @@ $diff | ForEach-Object -Process {
} }
} }
$sortedDiff = foreach ($directoryPath in ($diffTable.Keys | Sort-Object)) { $sortedDiff = foreach ($directoryPath in ($diffTable.Keys | Sort-Object)) {
$orderPath = Join-Path -Path $directoryPath -ChildPath '.order' $orderPath = [System.IO.Path]::Combine($directoryPath,'.order')
if (Test-Path -Path $orderPath) { if (Test-Path -Path $orderPath) {
$order = Get-Content -Path $orderPath | ForEach-Object { $_.Trim() } $order = Get-Content -Path $orderPath | ForEach-Object { $_.Trim() }
foreach ($orderName in $order) { foreach ($orderName in $order) {