Skip to content

Commit 8418e79

Browse files
committed
Change 1 to 36, add workflow command
1 parent aafab75 commit 8418e79

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/bin/sh
2-
expected_num_errors=1
2+
expected_num_errors=36
33

44
cd builddir/src/doc/latex
55
echo "All missing character error messages in LaTeX log files:"
66
num_errors=$(grep -r "Missing character" --include "*.log" | tee /dev/stderr | wc -l)
77
echo "In total there are $num_errors missing character errors, expecting $expected_num_errors"
8+
[ $num_errors = $expected_num_errors ] || echo "::error title=Missing character errors introduced in PDF build::In total there are $num_errors missing character errors, expecting $expected_num_errors"
89
[ $num_errors = $expected_num_errors ]

0 commit comments

Comments
 (0)