mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
windows: fix list type in legacy module utils (#30483)
* windows: fix list type in legacy module utils * only change the return for the list type instead of affecting it all * additional null check when using an array
This commit is contained in:
parent
b7b57a811a
commit
01563ccd5d
3 changed files with 35 additions and 1 deletions
|
@ -0,0 +1,12 @@
|
|||
#powershell
|
||||
|
||||
#Requires -Module Ansible.ModuleUtils.Legacy
|
||||
|
||||
$params = Parse-Args $args
|
||||
$value = Get-AnsibleParam -Obj $params -Name value -Type list
|
||||
|
||||
if ($value -isnot [array]) {
|
||||
Fail-Json -obj @{} -message "value was not a list but was $($value.GetType().FullName)"
|
||||
}
|
||||
|
||||
Exit-Json @{ count = $value.Count }
|
Loading…
Add table
Add a link
Reference in a new issue