From 5e4f7742c5dd3381701c54fe7a7a6bb34fa60e9c Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Sun, 30 Sep 2012 09:40:01 +0200 Subject: [PATCH] Fixing execution of binary hooks. --- scripts/build/binary_hooks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/binary_hooks b/scripts/build/binary_hooks index cd1270be5..ef47d65dd 100755 --- a/scripts/build/binary_hooks +++ b/scripts/build/binary_hooks @@ -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