cfg/.config/sanity.d/has-readme.sh
Knut Ahlers 77de640cc8
Remove debugs re-stating the name of the check
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2020-09-06 13:40:14 +02:00

9 lines
143 B
Bash

function sanity_has_readme() {
[[ -f README.md ]] || {
report error "No README.md found"
return 1
}
report success "README.md found"
}