lib/check.mk: catch missing READMEs for features
`make check' is a bit more convenient than relying on my head...
This commit is contained in:
parent
c42d635b55
commit
695648f8b4
@ -9,3 +9,9 @@ check:
|
||||
| while read line; do \
|
||||
echo "chmod 755 $$line"; \
|
||||
done
|
||||
@find features.in -maxdepth 1 -type d \
|
||||
| while read dir; do \
|
||||
if [ ! -s "$$dir/README" ]; then \
|
||||
echo "$$dir: missing README"; \
|
||||
fi; \
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user