From b7d2476df024e01062fb2e006ef68667bec7d739 Mon Sep 17 00:00:00 2001 From: Johan Ljunggren Date: Sun, 17 Dec 2023 10:32:15 +0100 Subject: [PATCH] Fix alias in Install-ModuleFast --- ModuleFast.psm1 | 1 + 1 file changed, 1 insertion(+) diff --git a/ModuleFast.psm1 b/ModuleFast.psm1 index 02bde2f..9a1adaf 100644 --- a/ModuleFast.psm1 +++ b/ModuleFast.psm1 @@ -43,6 +43,7 @@ function Install-ModuleFast { #The module(s) to install. This can be a string, a ModuleSpecification, a hashtable with nuget version style (e.g. @{Name='test';Version='1.0'}), a hashtable with ModuleSpecification style (e.g. @{Name='test';RequiredVersion='1.0'}), [Alias('Name')] [Alias('ModuleToInstall')] + [Alias('ModulesToInstall')] [AllowNull()] [AllowEmptyCollection()] [Parameter(Mandatory, Position = 0, ValueFromPipeline, ParameterSetName = 'Specification')][ModuleFastSpec[]]$Specification,