fix: Avoid failing test when there are no logs

pull/834/head
Raphaël Vinot 2023-11-21 11:49:42 +01:00
parent adc6969ba7
commit 3408ae1f2e
1 changed files with 2 additions and 2 deletions

View File

@ -82,5 +82,5 @@ jobs:
- name: Logs
if: ${{ always() }}
run: |
cat logs/*.log
cat website/logs/*.log
find -wholename ./logs/*.log -exec cat {} \;
find -wholename ./website/logs/*.log -exec cat {} \;