diff options
Diffstat (limited to 'helpers/binary_linux-image')
-rwxr-xr-x | helpers/binary_linux-image | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/helpers/binary_linux-image b/helpers/binary_linux-image index bf0936a90..e82ec10d5 100755 --- a/helpers/binary_linux-image +++ b/helpers/binary_linux-image @@ -73,7 +73,10 @@ cp chroot/boot/initrd.img-* "${DESTDIR}" case "${LH_INITRAMFS}" in live-initramfs) - cp chroot/usr/share/doc/live-initramfs/parameters.txt "${DESTDIR}"/parameters.txt || true + if [ -e chroot/usr/share/doc/live-initramfs/parameters.txt ] + then + cp chroot/usr/share/doc/live-initramfs/parameters.txt "${DESTDIR}"/parameters.txt + fi ;; esac |