diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-06-08 21:31:00 +0100 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-06-08 21:31:00 +0100 |
commit | 0e4a39463b1f00932b7e0131188ad92ed6a9d94e (patch) | |
tree | 565cfa15e0c4862aa8da5a9232dc08a98f25467c | |
parent | 362b7380e3daa1e0a6a50e20ce1ce4a981f35e9d (diff) | |
download | vyos-live-build-0e4a39463b1f00932b7e0131188ad92ed6a9d94e.tar.gz vyos-live-build-0e4a39463b1f00932b7e0131188ad92ed6a9d94e.zip |
Compress build logs. Thanks to Mathieu Geli for the suggestion.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
-rwxr-xr-x | examples/cron/images.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/cron/images.sh b/examples/cron/images.sh index 67e0efca4..ed9a5b803 100755 --- a/examples/cron/images.sh +++ b/examples/cron/images.sh @@ -47,6 +47,7 @@ do fi lh build | tee debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.iso.log + gzip -9 debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.iso.log mv binary.iso debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.iso mv binary.list debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.iso.list @@ -61,6 +62,7 @@ do lh clean --binary lh config -b usb-hdd lh binary | tee debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.img.log + gzip -9 debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.img.log mv binary.img debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.img mv binary.list debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.img.list @@ -69,6 +71,7 @@ do lh clean --binary lh config -b net lh binary | tee debian-live-${DISTRIBUTION}-i386-${FLAVOUR}-net.tar.gz.log + gzip -9 debian-live-${DISTRIBUTION}-i386-${FLAVOUR}-net.tar.gz.log mv binary-net.tar.gz debian-live-${DISTRIBUTION}-i386-${FLAVOUR}-net.tar.gz mv binary.list debian-live-${DISTRIBUTION}-i386-${FLAVOUR}-net.tar.gz.list |