Skip to content

Commit

Permalink
Fix environment file path
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato committed Sep 16, 2024
1 parent b8c2447 commit 1cf3e10
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/Common.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ function Sync-Uv {
}
$Sep = $IsWindows ? ';' : ':'
$Env:PATH = "$(Get-Item 'bin')$Sep$Env:PATH"
$EnvFile = $Env:GITHUB_ENV ? $Env:GITHUB_ENV : '.env'
if ($CI) {
("PATH=$Bin$Sep$Env:PATH", "UV_TOOL_BIN_DIR=$Bin") | Add-Content $EnvFile
}
Expand Down

0 comments on commit 1cf3e10

Please sign in to comment.