mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-03-30 20:31:14 +00:00
live-build/auto/config: Add nasty hack to order gtk-common-themese snap
first in snapd's seed.yaml to work around the snapd bug in LP: #1772844
This commit is contained in:
parent
7717615f58
commit
6673d4d6ee
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
|||||||
|
livecd-rootfs (2.525.3) bionic; urgency=medium
|
||||||
|
|
||||||
|
* live-build/auto/config: Add nasty hack to order gtk-common-themese snap
|
||||||
|
first in snapd's seed.yaml to work around the snapd bug in LP: #1772844
|
||||||
|
|
||||||
|
-- Adam Conrad <adconrad@ubuntu.com> Mon, 23 Jul 2018 10:02:04 -0600
|
||||||
|
|
||||||
livecd-rootfs (2.525.2) bionic; urgency=medium
|
livecd-rootfs (2.525.2) bionic; urgency=medium
|
||||||
|
|
||||||
* Update unminimize script text and install ubuntu-standard when
|
* Update unminimize script text and install ubuntu-standard when
|
||||||
|
@ -700,7 +700,12 @@ if [ -n "${BASE_SEED}" ]; then
|
|||||||
seed_snaps=$(sed -rn '1,/-----/d;/-----/,$d; s/(.*) \|.*/\1/; s, \(classic\),/classic,; p' "${file}")
|
seed_snaps=$(sed -rn '1,/-----/d;/-----/,$d; s/(.*) \|.*/\1/; s, \(classic\),/classic,; p' "${file}")
|
||||||
for snap in ${seed_snaps}; do
|
for snap in ${seed_snaps}; do
|
||||||
echo "snap: found ${snap}"
|
echo "snap: found ${snap}"
|
||||||
ALL_SNAPS="${ALL_SNAPS:+${ALL_SNAPS} }${snap}"
|
# Reorder gtk-common-themes first due to LP: #1772844
|
||||||
|
if [ "${snap}" = "gtk-common-themes" ]; then
|
||||||
|
ALL_SNAPS="${snap}${ALL_SNAPS:+ ${ALL_SNAPS}}"
|
||||||
|
else
|
||||||
|
ALL_SNAPS="${ALL_SNAPS:+${ALL_SNAPS} }${snap}"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
if [ -n "${ALL_SNAPS}" ] || [ -n "${HOOK_SNAPS}" ]; then
|
if [ -n "${ALL_SNAPS}" ] || [ -n "${HOOK_SNAPS}" ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user