diff options
Diffstat (limited to 'scripts/build/lb_chroot_local-hooks')
-rwxr-xr-x | scripts/build/lb_chroot_local-hooks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/lb_chroot_local-hooks b/scripts/build/lb_chroot_local-hooks index c163ca3a1..c6482c569 100755 --- a/scripts/build/lb_chroot_local-hooks +++ b/scripts/build/lb_chroot_local-hooks @@ -56,7 +56,7 @@ then fi # Executing hook - Chroot chroot "/root/$(basename ${HOOK})" || ( Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ) + Chroot chroot "/root/$(basename ${HOOK})" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;} # Removing hook rm -f chroot/root/"$(basename ${HOOK})" |