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