mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-04-17 06:01:34 +00:00
Don't write config/seeded-snaps if no snaps have been seeded.
This commit is contained in:
parent
2219f62998
commit
301fdd2e02
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
livecd-rootfs (2.498) UNRELEASED; urgency=medium
|
||||
|
||||
* Don't write config/seeded-snaps if no snaps have been seeded.
|
||||
|
||||
-- Iain Lane <iain.lane@canonical.com> Thu, 01 Feb 2018 11:52:16 +0000
|
||||
|
||||
livecd-rootfs (2.497) bionic; urgency=medium
|
||||
|
||||
* live-build/auto/config: Clean out unused hostname matches and fix indenting.
|
||||
|
@ -676,7 +676,9 @@ if [ -n "${BASE_SEED}" ]; then
|
||||
ALL_SNAPS="${ALL_SNAPS:+${ALL_SNAPS} }${snap}"
|
||||
done
|
||||
done
|
||||
echo "${ALL_SNAPS}" > config/seeded-snaps
|
||||
if [ -n "${ALL_SNAPS}" ]; then
|
||||
echo "${ALL_SNAPS}" > config/seeded-snaps
|
||||
fi
|
||||
fi
|
||||
|
||||
export APT_OPTIONS
|
||||
|
Loading…
x
Reference in New Issue
Block a user