From cb7134dc00411283a72d1c326973ad237da40800 Mon Sep 17 00:00:00 2001 From: Ko van der Sloot Date: Fri, 30 Aug 2024 23:18:18 +0200 Subject: [PATCH] test if file exists before attempt to cat it --- .github/workflows/timblserver.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/timblserver.yml b/.github/workflows/timblserver.yml index ef2d117..0b98a6d 100644 --- a/.github/workflows/timblserver.yml +++ b/.github/workflows/timblserver.yml @@ -138,7 +138,7 @@ jobs: if: ${{ env.action_status == '' && steps.configure.outcome != 'success' }} run: | echo "action_status=configure" >> $GITHUB_ENV - cat config.log + [ -f config.log ] && cat config.log - name: make if: ${{ env.action_status == '' }} id: make