Commit 8ccbbcc 1 parent b9b6770 commit 8ccbbcc Copy full SHA for 8ccbbcc
File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -759,14 +759,14 @@ function Get-ModuleFastPlan {
759
759
# meaninful performance difference on a whole-system upgrade.
760
760
[HashSet [string ]]$moduleNames = $modulesToInstall.Name
761
761
if ($dependency.Name -notin $ModuleNames ) {
762
- Write-Debug " No modules with name $ ( $dependency.Name ) currently exist in the install plan. Resolving dependency..."
762
+ Write-Debug " $ ( $dependency.Name ) : No modules with this name currently exist in the install plan. Resolving dependency..."
763
763
return $true
764
764
}
765
765
766
- $modulesToInstall
767
- | Where-Object Name -EQ $dependency.Name
768
- | Sort-Object ModuleVersion - Descending
769
- | ForEach-Object {
766
+ $modulesToInstall
767
+ | Where-Object Name -EQ $dependency.Name
768
+ | Sort-Object ModuleVersion - Descending
769
+ | ForEach-Object {
770
770
if ($dependency.SatisfiedBy ($PSItem.ModuleVersion )) {
771
771
Write-Debug " Dependency $dependency satisfied by existing planned install item $PSItem "
772
772
return $false
You can’t perform that action at this time.
0 commit comments