From 2b4a404854ffa9d2ad5f8b0823b72b29922dfd2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20=27sil2100=27=20Zemczak?= Date: Sun, 29 Oct 2023 22:24:08 +0200 Subject: [PATCH] Change position of the payload assets. --- live-build/auto/build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/live-build/auto/build b/live-build/auto/build index 05900c49..33abb17d 100755 --- a/live-build/auto/build +++ b/live-build/auto/build @@ -121,8 +121,9 @@ if [ "${IMAGEFORMAT:-}" = "ubuntu-image" ]; then rm -rf output/ # Prepare the source catalogue cat install-sources.yaml.in | sed "s/@SIZE@/$(shell stat -c%s pc.img.xz)/g" > install-sources.yaml - # Now move all of the payload to the build directory - mv install-sources.yaml pc.img.xz autoinstall.yaml 99-custom-networking.cfg ../ + # Now move all of the payload to the image-definitions directory, + # so that they can be used by the image-definition effectively. + mv install-sources.yaml pc.img.xz autoinstall.yaml 99-custom-networking.cfg ../image-definitions/ cd ../ echo "Image payload build completed, continuing"