From 2ea70777aab7e977cee4c4d9a014f271089538b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rasmus=20Skytte=20Randl=C3=B8v?= Date: Wed, 7 Feb 2024 13:02:56 +0100 Subject: [PATCH] fix(code-coverage): Fix awk syntax error - part 7 --- .github/workflows/code-coverage.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code-coverage.yaml b/.github/workflows/code-coverage.yaml index dfc89202..59e6d570 100644 --- a/.github/workflows/code-coverage.yaml +++ b/.github/workflows/code-coverage.yaml @@ -188,7 +188,8 @@ jobs: if: always() run: | ## -------------------------------------------------------------------- - log=$(find ${{ runner.workspace }}/logs-docker/ -name 'postgres*.log') + ls ${{ runner.workspace }}/logs-docker/ + log=$(find ${{ runner.workspace }}/logs-docker/ -name '*postgres*.log') # Print the entire log file for debugging cat $log