pinch/hooks/pre-commit.d/check-readme.sh
2022-11-16 11:03:15 +01:00

21 lines
562 B
Bash
Executable file

#!/usr/bin/env bash
description() {
echo "Checks for README.md file with the proper extension."
}
config() {
echo "README_BYPASS_EXT:bypasses extension check"
echo "README_BYPASS_ENO:bypasses execution halt when the README file is missing"
}
if [[ -e README ]]; then
pinfo "README file found instead of README.md. Consider changing the extension..."
[[ -z $README_BYPASS_EXT ]] && exit 1
else
if [[ -e README.md ]]; then
pinfo "README.md file found."
else
pwarn "No README file found..."
[[ -z $README_BYPASS_ENO ]] && exit 2
fi
fi