From a2aac46da9be2e198c6fa73b47ba29f903c2f766 Mon Sep 17 00:00:00 2001 From: Veloman Yunkan Date: Mon, 6 Apr 2020 23:53:28 +0400 Subject: [PATCH] Moved C:\Python36\Scripts to the begging of PATH Otherwise in the appveyor Windows build meson installed under "C:\Program Files" is used. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index a55a4e2..303e223 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,7 +3,7 @@ version: '0.1.{build}' environment: EXTRA_DIR: 'C:\extra' MINGW64_EXTRA_DIR: '/c/extra' - PATH: '%PATH%;%EXTRA_DIR%\bin;C:\\Python36\\Scripts;C:\\Program Files (x86)\\Windows Kits\\10\\bin\\%platform%' + PATH: 'C:\\Python36\\Scripts;%PATH%;%EXTRA_DIR%\bin;C:\\Program Files (x86)\\Windows Kits\\10\\bin\\%platform%' PKG_CONFIG_PATH: '%EXTRA_DIR%\lib\pkgconfig' MSYS2_PATH_TYPE: 'inherit' MSYS2_ARG_CONV_EXCL: '-Tp'