diff options
-rw-r--r-- | efi-sync | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -56,11 +56,17 @@ efi_install () { KERNEL_VERSION="$(basename $(realpath "$KERNEL") | sed -E 's/vmlinuz-(.*)-(.*)/\2/')" - cp -H "$KERNEL" "${EFI_KERNEL}"|| log "Failed to copy '${KERNEL}' into your EFI at '${EFI_KERNEL}'." + if ! cp -H "$KERNEL" "${EFI_KERNEL}"; then + log "Failed to copy '${KERNEL}' into your EFI at '${EFI_KERNEL}'." + return 1 + fi log "Installed $(realpath "$KERNEL")." if [[ -f /etc/mkinitrd.conf ]]; then - mkinitrd -F -c -k "${KERNEL_VERSION}" >/dev/null 2>&1 || log "mkinitrd failed to build and install your initial ramdisk." + if ! mkinitrd -F -c -k "${KERNEL_VERSION}" >/dev/null 2>&1; then + log "mkinitrd failed to build and install your initial ramdisk." + return 1 + fi log "Installed the initial RAM disk for kernel version '${KERNEL_VERSION}'." fi } |