Skip to content

Commit fb8bf53

Browse files
Explicitly append Unix tools location to Path
This should fix around 250 tests that current fail with `command not found` in CI
1 parent 4784e6e commit fb8bf53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2097,7 +2097,7 @@ function Build-Runtime([Platform]$Platform, $Arch, [switch]$Test = $false) {
20972097
}
20982098

20992099
Isolate-EnvVars {
2100-
$env:Path = "$(Get-CMarkBinaryCache $Arch)\src;$(Get-PinnedToolchainRuntime);${env:Path}"
2100+
$env:Path = "$(Get-CMarkBinaryCache $Arch)\src;$(Get-PinnedToolchainRuntime);${env:Path};$UnixToolsBinDir"
21012101

21022102
$CompilersBinaryCache = if ($IsCrossCompiling) {
21032103
Get-BuildProjectBinaryCache Compilers

0 commit comments

Comments
 (0)