Changed absoluted paths to relative; set changelog message to UNRELEASED

This commit is contained in:
Cody Shepherd 2018-10-23 10:32:52 -07:00
parent 5bee1ade70
commit 2819290352
3 changed files with 3 additions and 3 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
livecd-rootfs (2.543) cosmic; urgency=medium
livecd-rootfs (2.543) UNRELEASED; urgency=medium
* Ensure pre-seeded snaps are now published in the image manifests.

View File

@ -551,7 +551,7 @@ fi
# '--initramfs none' produces different manifest names.
if [ -e "binary/$INITFS/filesystem.packages" ]; then
/build/config/snap-seed-parse "chroot/" >> "binary/${INITFS}/filesystem.packages"
./config/snap-seed-parse "chroot/" >> "binary/${INITFS}/filesystem.packages"
ln "binary/$INITFS/filesystem.packages" "$PREFIX.manifest"
chmod 644 "$PREFIX.manifest"
fi

View File

@ -49,7 +49,7 @@ create_manifest() {
echo "create_manifest chroot_root: ${chroot_root}"
dpkg-query --show --admindir="${chroot_root}/var/lib/dpkg" > ${target_file}
echo "create_manifest call to dpkg-query finished."
/build/config/snap-seed-parse "${chroot_root}" >> ${target_file}
./config/snap-seed-parse "${chroot_root}" >> ${target_file}
echo "create_manifest call to snap_seed_parse finished."
echo "create_manifest finished"
}