From 363f337e17c42e4cc940de1b8cc9a8914ff8142d Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sun, 25 Sep 2022 00:12:32 -0600 Subject: [PATCH] ci: fix test paths in build-windows.ps1 --- build-windows.ps1 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-windows.ps1 b/build-windows.ps1 index d13b6495..41b7dea6 100644 --- a/build-windows.ps1 +++ b/build-windows.ps1 @@ -32,16 +32,15 @@ if ( $? -eq $false ) { throw "package failed" } -.\tests\Release\tests.exe +.\tests\tests.exe if ( $? -eq $false ) { throw "tests failed" } # run hidden tests (releaseonly) -.\tests\Release\tests.exe [.] +.\tests\tests.exe [.] if ( $? -eq $false ) { throw "tests [.] failed" } -