mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
win_updates - fix category return value to be a list (#51001)
* win_updates - fix category return value to be a list * remove unstable test alias
This commit is contained in:
@@ -112,7 +112,7 @@ $update_script_block = {
|
||||
kb = $update.KBArticleIDs
|
||||
id = $update.Identity.UpdateId
|
||||
installed = $false
|
||||
categories = ($update.Categories | ForEach-Object { $_.Name })
|
||||
categories = @($update.Categories | ForEach-Object { $_.Name })
|
||||
}
|
||||
|
||||
# validate update again blacklist/whitelist/post_category_names/hidden
|
||||
|
||||
Reference in New Issue
Block a user