From: Viktor Szakats Date: Sun, 12 May 2024 22:34:54 +0000 (+0200) Subject: appveyor: more tidy-ups X-Git-Tag: curl-8_8_0~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=77ac610d084f78caab8fcf5728028a013ad4c0b4;p=thirdparty%2Fcurl.git appveyor: more tidy-ups - use `--disable` when calling `curl --version`. Just in case. - use single-quotes for a constant. Closes #13662 --- diff --git a/appveyor.sh b/appveyor.sh index fa0171d8b9..7c70f44551 100644 --- a/appveyor.sh +++ b/appveyor.sh @@ -119,7 +119,7 @@ fi find . -name '*.exe' -o -name '*.dll' if [ -z "${SKIP_RUN:-}" ]; then - "${curl}" --version + "${curl}" --disable --version else echo "Skip running curl.exe. Reason: ${SKIP_RUN}" fi @@ -136,8 +136,8 @@ if [ "${TESTING}" = 'ON' ]; then export TFLAGS='' if [ -x "$(cygpath -u "${WINDIR}/System32/curl.exe")" ]; then TFLAGS+=" -ac $(cygpath -u "${WINDIR}/System32/curl.exe")" - elif [ -x "$(cygpath -u "C:/msys64/usr/bin/curl.exe")" ]; then - TFLAGS+=" -ac $(cygpath -u "C:/msys64/usr/bin/curl.exe")" + elif [ -x "$(cygpath -u 'C:/msys64/usr/bin/curl.exe')" ]; then + TFLAGS+=" -ac $(cygpath -u 'C:/msys64/usr/bin/curl.exe')" fi TFLAGS+=" ${DISABLED_TESTS:-}" if [ "${BUILD_SYSTEM}" = 'CMake' ]; then