Skip to content

Commit

Permalink
Set new supported ansible minimum version to 2.14 (#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 committed Dec 4, 2024
1 parent 56484ca commit 663dcc9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion plugins/modules/win_region.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,11 @@ Function Get-UserLocaleName {
return $user_locale
}

Function Get-ValidGeoId($cultures) {
Function Get-ValidGeoId {
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingEmptyCatchBlock', '',
Justification = 'We dont care about the error here')]
param($cultures)

$geo_ids = @()
foreach ($culture in $cultures) {
try {
Expand Down

0 comments on commit 663dcc9

Please sign in to comment.