diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2022-03-09 18:13:44 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2022-03-09 18:27:01 +0100 |
| commit | 7b889c1e4d33f7b534a355afa200f0a313eb86fb (patch) | |
| tree | 05ab0caf26b7612ee207f16eb424af223fdf13bd | |
| parent | c51a7a2e1be62d5a48816ec5653977a13a210a33 (diff) | |
| download | PROJ-7b889c1e4d33f7b534a355afa200f0a313eb86fb.tar.gz PROJ-7b889c1e4d33f7b534a355afa200f0a313eb86fb.zip | |
windows.yml: fix issue with sqlite3 binary and vcpkg
| -rw-r--r-- | .github/workflows/windows.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 10c83759..9600875c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -45,7 +45,8 @@ jobs: run: | set VCPKG_INSTALLED=c:\vcpkg\installed\${{ env.ARCH }}-windows dir %VCPKG_INSTALLED%\bin - set PATH=%VCPKG_INSTALLED%\bin;%PATH% + dir %VCPKG_INSTALLED%\tools + set PATH=%VCPKG_INSTALLED%\bin;%VCPKG_INSTALLED%\tools;%PATH% set PROJ_BUILD=%GITHUB_WORKSPACE%\build mkdir %PROJ_BUILD% cd %PROJ_BUILD% |
