mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-03-05 16:31:13 +00:00
Fix a reference to an undefined variable in a script that's set -u.
This commit is contained in:
parent
850495d5f9
commit
894ca9ccfc
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
livecd-rootfs (2.462) UNRELEASED; urgency=medium
|
||||
|
||||
* Fix a reference to an undefined variable in a script that's set -u.
|
||||
|
||||
-- Steve Langasek <steve.langasek@ubuntu.com> Fri, 29 Sep 2017 15:10:20 -0400
|
||||
|
||||
livecd-rootfs (2.461) artful; urgency=medium
|
||||
|
||||
* In subiquity, loadkeys to setup Shift+Tab key combination.
|
||||
|
@ -62,7 +62,7 @@ install_grub() {
|
||||
efi_boot_dir="/boot/efi/EFI/BOOT"
|
||||
chroot mountpoint mkdir -p "${efi_boot_dir}"
|
||||
|
||||
if [ "$SUBPROJECT" = minimize ] && [ -n "$partuuid" ]; then
|
||||
if [ "${SUBPROJECT:-}" = minimize ] && [ -n "$partuuid" ]; then
|
||||
# FIXME: code duplicated between 032-disk-image.binary
|
||||
# and 033-disk-image-uefi.binary. We want to fix this to not
|
||||
# have initramfs-tools installed at all on these images.
|
||||
|
Loading…
x
Reference in New Issue
Block a user