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>
This commit is contained in:
parent
37666ee1bb
commit
49d27a086d
|
@ -98,7 +98,7 @@ EOF
|
||||||
aptitude)
|
aptitude)
|
||||||
Apt install ${LH_INITRAMFS}
|
Apt install ${LH_INITRAMFS}
|
||||||
;;
|
;;
|
||||||
apt-get)
|
apt|apt-get)
|
||||||
Apt install -f
|
Apt install -f
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in New Issue