Skip to content

Commit

Permalink
fix(code-coverage): Fix awk syntax error - part 4
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusSkytte committed Feb 7, 2024
1 parent 9fccf98 commit ed4fd5c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/code-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,9 @@ jobs:
## --------------------------------------------------------------------
log=$(find ./logs-docs/ -name 'postgres*.log')
# Print the entire log file for debugging
cat $log
awk '/(ERROR:|STATEMENT:)/{flag=1}/LOG:|^[A-Z]/{flag=0}flag {print $0}' $log
# Throw errors on ERRORs
Expand Down

0 comments on commit ed4fd5c

Please sign in to comment.