Skip to content

Commit 9ee0ec1

Browse files
committed
Use Join-Path
1 parent e62e0e7 commit 9ee0ec1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/Convert-PDB.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if ($outputDirectory) {
4040
New-Item -ItemType Directory -Force -Path $outputDirectory | Out-Null
4141
}
4242

43-
$toolpath = "$pdb2pdbpath/tools/Pdb2Pdb.exe"
43+
$toolpath = Join-Path $pdb2pdbpath 'tools\Pdb2Pdb.exe'
4444
$arguments = $DllPath, '/out', $OutputPath, '/nowarn', '0021'
4545
if ($PdbPath) {
4646
$arguments += '/pdb', $PdbPath

0 commit comments

Comments
 (0)