summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@ubuntu.com>2012-09-30 09:40:01 +0200
committerDaniel Baumann <daniel@debian.org>2012-09-30 09:40:01 +0200
commit5e4f7742c5dd3381701c54fe7a7a6bb34fa60e9c (patch)
tree6524d54a60514886ffc97ac5f14a16506b7c2411
parentcab0d9e783ef18c334a09e0f1aa141dec0687978 (diff)
downloadvyos-live-build-5e4f7742c5dd3381701c54fe7a7a6bb34fa60e9c.tar.gz
vyos-live-build-5e4f7742c5dd3381701c54fe7a7a6bb34fa60e9c.zip
Fixing execution of binary hooks.
-rwxr-xr-xscripts/build/binary_hooks2
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