We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b18cf14 commit 1a57bd5Copy full SHA for 1a57bd5
2 files changed
.src/Public/Function/Uninstall-RSModule.ps1
@@ -50,7 +50,7 @@
50
else {
51
Write-Verbose "User has added modules to the Module parameter, splitting them"
52
$OldModule = $Module.Split(",").Trim()
53
- $Module = [System.Collections.Generic.List[string]]::new()
+ [System.Collections.ArrayList]$Module = @()
54
55
Write-Verbose "Looking so the modules exists in the system..."
56
foreach ($m in $OldModule) {
.src/Public/Function/Update-RSModule.ps1
@@ -87,7 +87,7 @@
87
88
89
90
91
92
if ($InstallMissing -eq $false) {
93
0 commit comments