Skip to content

Commit d135b05

Browse files
committed
try again
1 parent ef3a06f commit d135b05

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

setup/extract-setup-archive.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,11 @@ if (-not (Test-Path $archiveFile)) {
5959
exit 1
6060
}
6161

62-
# Clean up any existing temp directory
62+
# Clean up any existing temp directory and create fresh one
6363
if (Test-Path $tempDir) {
6464
Remove-Item -Recurse -Force $tempDir
6565
}
66+
New-Item -ItemType Directory -Path $tempDir | Out-Null
6667

6768
# Extract archive using tar.exe (much faster than Expand-Archive)
6869
Write-Host "Extracting $archiveFile..." -ForegroundColor Green

0 commit comments

Comments
 (0)