Release 10.3.0 #120

Manually merged
jlecour merged 51 commits from unstable into stable 2020-12-21 16:12:23 +01:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit c8d4da532f - Show all commits

View file

@ -18,6 +18,8 @@ The **patch** part changes incrementally at each release.
### Changed
* evoacme: Don't ignore hooks with . in the name (ignore when it's ".disable")
### Fixed
### Removed

View file

@ -287,7 +287,7 @@ main() {
# search for files in hooks directory
for hook in $(find ${HOOKS_DIR} -type f -executable | sort); do
# keep only executables files, not containing a "."
if [ -x "${hook}" ] && (basename "${hook}" | grep -vqF "."); then
if [ -x "${hook}" ] && (basename "${hook}" | grep -vqF ".disable"); then
debug "Executing ${hook}"
${hook}
fi