Merge pull request #140 from Romanitho/shuffle

Shuffle outdated app list to avoid looping on same package if one fails
pull/141/head
Romain 2022-08-10 11:10:07 +02:00 committed by GitHub
commit 0ee0dab0e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -52,5 +52,5 @@ function Get-WingetOutdatedApps {
}
}
return $upgradeList
return $upgradeList | Sort-Object {Get-Random}
}