Add missing (but documented) --(no-)evocheck options

This commit is contained in:
Jérémy Lecour 2024-05-15 11:27:44 +02:00 committed by Jérémy Lecour
parent 2560deec1e
commit a997191d06
Signed by: jlecour
SSH key fingerprint: SHA256:h+5LgHRKwN9lS0SsdVR5yZPeFlJE4Mt+8UtL4CcP8dY
2 changed files with 10 additions and 0 deletions

View file

@ -5,6 +5,8 @@ and this project **does not adhere to [Semantic Versioning](http://semver.org/sp
### Added
Add missing (but documented) `--(no-)evocheck` options
### Changed
### Deprecated

View file

@ -437,6 +437,14 @@ while :; do
printf 'ERROR: "--message" requires a non-empty option argument.\n' >&2
exit 1
;;
--no-evocheck)
# disable evocheck hook
EVOCHECK=0
;;
--evocheck)
# enable evocheck hook
EVOCHECK=1
;;
--no-commit)
# disable commit hook
HOOK_COMMIT=0