Skip to content

Commit 789bf87

Browse files
committed
Fix adding dependency pdb files to the packages
1 parent c79adf8 commit 789bf87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension/BuildPhpExtension/private/Add-Package.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function Add-Package {
5959
}
6060
}
6161
Get-ChildItem -Path ..\deps\bin -Recurse -Include "*.pdb" | ForEach-Object {
62-
if(Test-Path "artifacts\$($_.Name.Split('.')[0]).dll") {
62+
if(Test-Path "artifacts\$($_.Name.Replace('.pdb', '.dll'))") {
6363
Copy-Item -Path $_.FullName -Destination artifacts -Force
6464
}
6565
}

0 commit comments

Comments
 (0)