From bde0d1aa110f45ad15472b40954e6c3ab3dc61cf Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 9 Aug 2025 00:43:14 +0200 Subject: [PATCH] Revert "appveyor.sh always build examples (temp)" This reverts commit 7e5f7a89e77b1a4b9c7781a9e1e52fab945f57d5. --- appveyor.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.sh b/appveyor.sh index c5381890ad..e9871415e0 100644 --- a/appveyor.sh +++ b/appveyor.sh @@ -161,7 +161,8 @@ fi # build examples -if [ "${BUILD_SYSTEM}" = 'CMake' ]; then +if [ "${EXAMPLES}" = 'ON' ] && \ + [ "${BUILD_SYSTEM}" = 'CMake' ]; then time cmake --build _bld --config "${PRJ_CFG}" --parallel 2 --target curl-examples-build fi