Skip to content

Commit 06ea6da

Browse files
authored
Make it clear when checks pass (#1360)
1 parent 783e17b commit 06ea6da

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.ci/butler.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ cd ..
44

55
result=0
66

7-
echo "No subjects are of invalid size<br>" > too_long_subjects.txt
8-
echo "No subjects with leading lower case characters<br>" > leading_lowercases.txt
9-
echo "No subjects with trailing periods<br>" > trailing_periods.txt
10-
echo "No body lines are too wide<br>" > too_long_body_lines.txt
11-
echo "No keywords are missing in keywords.txt<br>" > missing_keywords.txt
12-
echo "No keywords in code that don't exist in keywords.txt<br>" > missing_keywords_2.txt
13-
echo "No keywords in code that don't have Doxygen comments and aren't blacklisted in keywords.txt<br>" > missing_keywords_3.txt
14-
echo "No lines in keywords.txt using spaces instead of TAB (the Arduino IDE doesn't support space)<br>" > tab_spaces_keywords.txt
15-
echo "No occurences of the deprecated boolean data type<br>" >> booleans.txt
7+
echo "No subjects are of invalid size - great!<br>" > too_long_subjects.txt
8+
echo "No subjects with leading lower case characters - great!<br>" > leading_lowercases.txt
9+
echo "No subjects with trailing periods - great!<br>" > trailing_periods.txt
10+
echo "No body lines are too wide - great!<br>" > too_long_body_lines.txt
11+
echo "No keywords are missing in keywords.txt - great!<br>" > missing_keywords.txt
12+
echo "No keywords in code that don't exist in keywords.txt - great!<br>" > missing_keywords_2.txt
13+
echo "No keywords in code that don't have Doxygen comments and aren't blacklisted in keywords.txt - great!<br>" > missing_keywords_3.txt
14+
echo "No lines in keywords.txt using spaces instead of TAB (the Arduino IDE doesn't support space) - great!<br>" > tab_spaces_keywords.txt
15+
echo "No occurences of the deprecated boolean data type - great!<br>" >> booleans.txt
1616

1717
too_long_subjects=`awk 'length > 72' subjects.txt`
1818
if [ -n "$too_long_subjects" ]; then

0 commit comments

Comments
 (0)