File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ foreach ($line in (Get-Content "$($PSScriptRoot)\filesBefore.txt" | Where-Object
2525 if ([string ]::IsNullOrWhiteSpace($line )) { continue }
2626
2727 $basePath = Join-Path " $ ( $publishDir.FullName ) \PSFramework" $line
28- foreach ($entry in (Resolve-PSFPath - Path $basePath ))
28+ foreach ($entry in (Resolve-Path - Path $basePath ))
2929 {
3030 $item = Get-Item $entry
3131 if ($item.PSIsContainer ) { continue }
@@ -49,7 +49,7 @@ foreach ($line in (Get-Content "$($PSScriptRoot)\filesAfter.txt" | Where-Object
4949 if ([string ]::IsNullOrWhiteSpace($line )) { continue }
5050
5151 $basePath = Join-Path " $ ( $publishDir.FullName ) \PSFramework" $line
52- foreach ($entry in (Resolve-PSFPath - Path $basePath ))
52+ foreach ($entry in (Resolve-Path - Path $basePath ))
5353 {
5454 $item = Get-Item $entry
5555 if ($item.PSIsContainer ) { continue }
You can’t perform that action at this time.
0 commit comments