Skip to content

Commit 6f65010

Browse files
committed
[ci] Fixed flawed geckodriver log job
1 parent d203490 commit 6f65010

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ jobs:
8888

8989
- name: Show gecko web driver log on failures
9090
if: ${{ failure() }}
91-
run: cat geckodriver.log
91+
run: |
92+
[ -f geckodriver.log ] && cat geckodriver.log \
93+
|| echo "there is no gecko web driver log to show"
9294
9395
- name: Upload Coverage
9496
if: ${{ success() }}

0 commit comments

Comments
 (0)