diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2008-02-15 16:13:12 -0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2008-02-15 16:14:30 -0200 |
commit | 92cd4a1daa9953260b0633c6d2a9c22019618c53 (patch) | |
tree | 0a9edcba51433a17de7a17814e991cf2bd003207 /helpers | |
parent | 03783def4be700c0d07ed33279f8d537c0307c39 (diff) | |
download | vyos-live-build-92cd4a1daa9953260b0633c6d2a9c22019618c53.tar.gz vyos-live-build-92cd4a1daa9953260b0633c6d2a9c22019618c53.zip |
binary: do not fail if parameters.txt isn't available
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_linux-image | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_binary_linux-image b/helpers/lh_binary_linux-image index 6795ec412..829088710 100755 --- a/helpers/lh_binary_linux-image +++ b/helpers/lh_binary_linux-image @@ -90,11 +90,11 @@ case "${LH_INITRAMFS}" in casper) # Checking casper templates Check_templates casper - cp "${TEMPLATES}"/parameters.txt "${DESTDIR}"/parameters.txt + cp "${TEMPLATES}"/parameters.txt "${DESTDIR}"/parameters.txt || true ;; 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 |