1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-13 08:40:26 +01:00

check_in_readme.sh: tell dev _which_ README.md

This commit is contained in:
Martine Lenders 2024-11-26 19:39:50 +01:00
parent 5e6e34e345
commit 7160166bc7
No known key found for this signature in database
GPG Key ID: 2134D77A5336DD80

View File

@ -19,10 +19,10 @@ done
# Report missing entries
if [ ${#missing_entries[@]} -eq 0 ]; then
echo "All directories are listed in the README.md file."
echo "All directories are listed in the examples/README.md file."
exit 0
else
echo "The following directories are missing in the README.md file:"
echo "The following directories are missing in the examples/README.md file:"
for entry in "${missing_entries[@]}"; do
echo "- $entry"
done