Fixing execution of binary hooks.

This commit is contained in:
Colin Watson 2012-09-30 09:40:01 +02:00 committed by Daniel Baumann
parent cab0d9e783
commit 5e4f7742c5
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ do
if [ -e "${FILE}" ]
then
cd binary
./"${FILE}" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
"${FILE}" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
cd "${OLDPWD}"
fi
done