From fb2e3ae60331d4b0ebf9aeeb5d0732f910ccfc97 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Thu, 12 Sep 2019 03:58:30 +1000 Subject: [PATCH] added error handling to appveyor script --- appveyor-build.bat | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor-build.bat b/appveyor-build.bat index ed39d39e6..878e9c897 100644 --- a/appveyor-build.bat +++ b/appveyor-build.bat @@ -18,9 +18,11 @@ curl -L -o oiio-v2.3.0-win64-shared.zip https://github.com/olive-editor/OpenImag REM Run cmake cmake . -G "NMake Makefiles" -DOPENCOLORIO_ROOT_DIR=ocio-v1.1.1-win64-shared -DFFMPEG_ROOT=ffmpeg-4.2-win64-dev -DOIIO_BASE_DIR=oiio-v2.3.0-win64-shared -DQt5_DIR=C:\Qt\5.13.0\msvc2015_64\lib\cmake\Qt5 +if %ERRORLEVEL% == 0 exit 1 REM Build Olive nmake +if %ERRORLEVEL% == 0 exit 1 REM Build finished, time to package mkdir olive