cfg/.config/sanity.d/has-readme.sh

9 lines
143 B
Bash
Raw Normal View History

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