From 77982d3ce0bda0ddeb3f8ca62c23e2e5c7894d4f Mon Sep 17 00:00:00 2001 From: Olivier Date: Tue, 18 Nov 2025 01:03:03 +0200 Subject: [PATCH] Fix formatting of Doxygen comments warning message --- .ci/butler.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/butler.sh b/.ci/butler.sh index 987972de..ceea1204 100755 --- a/.ci/butler.sh +++ b/.ci/butler.sh @@ -64,7 +64,7 @@ fi missing_keywords_3=$(SOURCE_FILES="core/ drivers/ hal/ examples/ examples_linux/ MyConfig.h MySensors.h"; for keyword in $(grep -whore 'MY_[A-Z][A-Z_0-9]*' $SOURCE_FILES | sort -u ); do grep -q $keyword keywords.txt || echo $keyword; done) if [ -n "$missing_keywords_3" ]; then echo "Keywords in code that don't have Doxygen comments and aren't blacklisted in keywords.txt:" > missing_keywords_3.txt - echo 'If keywords don''t have Doxygen comments, they will not be available at https://www.mysensors.org/apidocs/index.html.
' >> missing_keywords_3.txt + echo 'If keywords don''t have Doxygen comments, they will not be available at https://www.mysensors.org/apidocs/index.html.' >> missing_keywords_3.txt echo "Add Doxygen comments to make it easier for users to find and understand how to use the new keywords." >> missing_keywords_3.txt echo "$missing_keywords_3" >> missing_keywords_3.txt sed -i -e 's/$/
/' missing_keywords_3.txt