diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-04-10 22:36:22 +0100 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-04-10 22:36:22 +0100 |
commit | 49d27a086d7e15386aef93473552aaf7d77fd85f (patch) | |
tree | 679f204e32c94a9bc6b2ee7e057f2baee91874fc /helpers | |
parent | 37666ee1bb261b0ac48dd0009272dc954f953090 (diff) | |
download | vyos-live-build-49d27a086d7e15386aef93473552aaf7d77fd85f.tar.gz vyos-live-build-49d27a086d7e15386aef93473552aaf7d77fd85f.zip |
lh_chroot_linux-image: Catch missing case in local live-initramfs handling
This patch catches the case when LH_APT is "apt", its default value. This
was causing build failures when using a local live-initramfs .deb.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_chroot_linux-image | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_chroot_linux-image b/helpers/lh_chroot_linux-image index 4a2e0e99c..bc6de5488 100755 --- a/helpers/lh_chroot_linux-image +++ b/helpers/lh_chroot_linux-image @@ -98,7 +98,7 @@ EOF aptitude) Apt install ${LH_INITRAMFS} ;; - apt-get) + apt|apt-get) Apt install -f ;; esac |