Skip to content

Commit a8f3b76

Browse files
Merge pull request #235 from PowershellFrameworkCollective/development
more build fixing
2 parents ee70b67 + 1119dfe commit a8f3b76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/vsts-build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 }

0 commit comments

Comments
 (0)