mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-26 00:21:13 +00:00
Remove Git bin directory from the path because it breaks mingw config.
This commit is contained in:
parent
f29a3fadbf
commit
59ed28274c
@ -22,7 +22,11 @@ install:
|
|||||||
- set PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%;C:\mingw64\bin
|
- set PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%;C:\mingw64\bin
|
||||||
|
|
||||||
before_build:
|
before_build:
|
||||||
- ps: cmake -DFMT_EXTRA_TESTS=ON "$env:generator" .
|
- ps: |
|
||||||
|
if ($env:build -eq "mingw") {
|
||||||
|
$env:PATH = $env:PATH -replace "C:\\Program Files (x86)\\Git\\bin",""
|
||||||
|
}
|
||||||
|
cmake -DFMT_EXTRA_TESTS=ON "$env:generator" .
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- ps: |
|
- ps: |
|
||||||
|
Loading…
Reference in New Issue
Block a user