From b14d0a2b3cc7b710c752a4e37cc9aa26a382da24 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Wed, 16 Oct 2024 00:58:26 +0100 Subject: [PATCH] try --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d7bf40..191106f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -227,10 +227,10 @@ jobs: pip3 install dist/*.whl cd / echo "moo" - python3 -c 'import pyray; pyray.init_window(100,100,"test")' >output 2>&1 || true + python3 -c 'import pyray; pyray.init_window(100,100,"test")' >/tmp/output 2>&1 || true echo "woo" - cat output - if grep -q "INFO: Initializing raylib" output; then + cat /tmp/output + if grep -q "INFO: Initializing raylib" /tmp/output; then echo "boo" exit 0 else