Skip to content

Commit

Permalink
Explicitly create the DevDrive tmpdir before use (#7644)
Browse files Browse the repository at this point in the history
A suggested solution to #6940 — unfortunately only time will tell if it
works.
  • Loading branch information
zanieb authored Sep 23, 2024
1 parent a541d6c commit 47eeef5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/setup-dev-drive.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ Write-Output $Volume
$Drive = "$($Volume.DriveLetter):"
$Tmp = "$($Drive)/uv-tmp"

# Create the directory ahead of time in an attempt to avoid race-conditions
New-Item $Tmp -ItemType Directory

Write-Output `
"DEV_DRIVE=$($Drive)" `
"TMP=$($Tmp)" `
Expand Down

0 comments on commit 47eeef5

Please sign in to comment.