diff options
author | Daniel Baumann <daniel@debian.org> | 2008-04-17 13:05:29 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:32 +0100 |
commit | 062840c5d480bb7d55cd7e2073f50f11ff7e702b (patch) | |
tree | 2c7c527c66a0f825d096cc62277e3389594ffab4 | |
parent | c5eea87b9c39c0c0289c085087431ed3202b0f25 (diff) | |
download | vyos-live-build-062840c5d480bb7d55cd7e2073f50f11ff7e702b.tar.gz vyos-live-build-062840c5d480bb7d55cd7e2073f50f11ff7e702b.zip |
When building snapshot images, also storing source.list away.
-rwxr-xr-x | examples/cron/build.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/cron/build.sh b/examples/cron/build.sh index 9a5703557..8d47f44f9 100755 --- a/examples/cron/build.sh +++ b/examples/cron/build.sh @@ -36,16 +36,17 @@ do lh build | tee debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.iso.log mv binary.iso debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.iso - mv source.tar.gz debian-live-${DISTRIBUTION}-source-${FLAVOUR}.tar.gz - mv binary.packages debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.iso.packages mv binary.list debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.iso.list + mv binary.packages debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.iso.packages + mv source.tar.gz debian-live-${DISTRIBUTION}-source-${FLAVOUR}.tar.gz + mv source.list debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.tar.gz.list lh clean --binary lh config -b usb-hdd lh binary | tee debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.img.log mv binary.img debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.img - mv binary.packages debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.img.packages mv binary.list debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.img.list + mv binary.packages debian-live-${DISTRIBUTION}-i386-${FLAVOUR}.img.packages done done |