Echo executing source/binary hooks

The chroot hooks already do this.
This commit is contained in:
Nick Brown 2022-02-11 10:51:37 +00:00
parent 9ee1a1671f
commit 70994cd304
2 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,7 @@ do
fi
# Executing hook
Echo_message "Executing hook ${HOOK}..."
cd binary
../"${HOOK}" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
cd "${OLDPWD}"

View File

@ -66,6 +66,7 @@ do
fi
# Executing hook
Echo_message "Executing hook ${HOOK}..."
cd source
../"${HOOK}" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
cd "${OLDPWD}"