21 lines
562 B
Bash
Executable file
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
|