From 20ccd2c254a36ee2a1147c564d9f1d3143fd8840 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Fri, 14 Aug 2020 19:14:34 +1000 Subject: [PATCH] appveyor: run gn as a cmd /c process as well --- .appveyor/build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor/build.bat b/.appveyor/build.bat index bda82984b..3a18cea65 100644 --- a/.appveyor/build.bat +++ b/.appveyor/build.bat @@ -37,7 +37,7 @@ set PATH=%PATH%;%APPVEYOR_BUILD_FOLDER%\depot_tools REM Run `fetch` through cmd /c since fetch is a batch file that seems to call exit cmd /c fetch crashpad cd crashpad -gn gen out/Default +cmd /c gn gen out/Default ninja.exe -C out/Default cd ..