Skip to content

Commit 9ea321a

Browse files
committed
make sure we still see the output of the indent log even when we crash
1 parent 1e11936 commit 9ea321a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/CI.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,11 @@ jobs:
5050
5151
- name: Run latexindent
5252
run: |
53-
latexindent -kv -m -l .localSettings.yaml src/*.tex > /dev/null
53+
E=0
54+
latexindent -kv -m -l .localSettings.yaml src/*.tex > /dev/null || E=1
5455
cat src/indent.log
55-
56+
exit $E
57+
5658
build_latex:
5759
name: Build LaTeX
5860
needs: skip_check

0 commit comments

Comments
 (0)