From 2972d9fbd8b6e7b20d1a9a3213803549f51199f9 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Fri, 17 May 2024 16:18:45 +0200 Subject: [PATCH] Appveyor: Fix CMake args in coverity build --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 15a93600..b14277f3 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -204,7 +204,7 @@ for: - cmake -G "%GENERATOR%" .. - ps: | cov-configure --msvc - cov-build --dir cov-int cmake --build --target tests . --config $env:configuration + cov-build --dir cov-int cmake --build . --target tests --config $env:configuration If ($LastExitCode -ne 0) { cat cov-int/build-log.txt $host.SetShouldExit($LastExitCode)