diff options
Diffstat (limited to 'scripts/build/binary_hooks')
-rwxr-xr-x | scripts/build/binary_hooks | 2 |
1 files changed, 1 insertions, 1 deletions
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 |