From 5b7f5afd3cba2d8a9c3ad30e21fefab5c18d7541 Mon Sep 17 00:00:00 2001 From: JJ Fullmer Date: Fri, 30 Aug 2024 06:33:13 -0600 Subject: [PATCH] fix pkgList Param in Set-FogSnapins, accidentally made it just string instead of string[] --- FogApi/Public/Set-FogSnapins.ps1 | 2 +- docs/ReleaseNotes.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/FogApi/Public/Set-FogSnapins.ps1 b/FogApi/Public/Set-FogSnapins.ps1 index e3942ef..9b9601a 100644 --- a/FogApi/Public/Set-FogSnapins.ps1 +++ b/FogApi/Public/Set-FogSnapins.ps1 @@ -49,7 +49,7 @@ they could then be deployed with start-fogsnapins } # } })] - [string]$pkgList, + [string[]]$pkgList, [parameter(ParameterSetName='byId')] [parameter(ParameterSetName='byObject')] [switch]$exactNames, diff --git a/docs/ReleaseNotes.md b/docs/ReleaseNotes.md index e1ae763..9c788f0 100644 --- a/docs/ReleaseNotes.md +++ b/docs/ReleaseNotes.md @@ -5,6 +5,7 @@ ### 2408.9.1 resolves Auto add aliases on build #9 + ### 2408.9.0 Major version doc updates, added many new functions and implemented some pipeline functionality