Skip to content

Commit 42b121e

Browse files
Replace GUID-based temp directory names in build.ps1 (closes #220)
1 parent 475308e commit 42b121e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ try {
204204
$extName = [System.IO.Path]::GetFileNameWithoutExtension($extSourcePath)
205205
$extOutName = "$extName$extSuffix"
206206
$extDest = Join-Path $extSource.DirectoryName $extOutName
207-
$extBuildDir = Join-Path $buildDir ("ext-" + [guid]::NewGuid().ToString("N"))
207+
$extBuildDir = Join-Path $buildDir "ext-$extName"
208208

209209
New-Item -ItemType Directory -Path $extBuildDir -Force | Out-Null
210210
Push-Location $extBuildDir

0 commit comments

Comments
 (0)