binary: do not fail if parameters.txt isn't available
This commit is contained in:
parent
03783def4b
commit
92cd4a1daa
|
@ -90,11 +90,11 @@ case "${LH_INITRAMFS}" in
|
||||||
casper)
|
casper)
|
||||||
# Checking casper templates
|
# Checking casper templates
|
||||||
Check_templates casper
|
Check_templates casper
|
||||||
cp "${TEMPLATES}"/parameters.txt "${DESTDIR}"/parameters.txt
|
cp "${TEMPLATES}"/parameters.txt "${DESTDIR}"/parameters.txt || true
|
||||||
;;
|
;;
|
||||||
|
|
||||||
live-initramfs)
|
live-initramfs)
|
||||||
cp chroot/usr/share/doc/live-initramfs/parameters.txt "${DESTDIR}"/parameters.txt
|
cp chroot/usr/share/doc/live-initramfs/parameters.txt "${DESTDIR}"/parameters.txt || true
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue