Skip to content

Commit bf8968e

Browse files
committed
Fix Windows Yices dist path detection
1 parent 8c2a658 commit bf8968e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/ci-build-test-windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ build_yices() {
6363
make OPTION=mingw64 MODE=release dist
6464

6565
local dist_dir
66-
dist_dir="$(find build -type d -path '*/release/dist' | head -n 1)"
66+
dist_dir="$(find build -type d -name dist | head -n 1)"
6767
if [[ -z "${dist_dir}" ]]; then
6868
echo "failed to locate Yices dist directory" >&2
6969
exit 1

0 commit comments

Comments
 (0)