diff options
author | Daniel Baumann <daniel@debian.org> | 2009-02-14 18:01:55 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:42 +0100 |
commit | 593de110e933efcedfba9f74c1fa2322a3c33bc4 (patch) | |
tree | 06f48bccbcd482b39418b18d7d0d04e2cece7477 | |
parent | e691015fc0ec2467dbd5740cede6ee31397b3d95 (diff) | |
download | vyos-live-build-593de110e933efcedfba9f74c1fa2322a3c33bc4.tar.gz vyos-live-build-593de110e933efcedfba9f74c1fa2322a3c33bc4.zip |
Redirecting stderr to log as well in example image build script.
-rwxr-xr-x | examples/cron/images.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/cron/images.sh b/examples/cron/images.sh index 092800bfe..7dc69ee99 100755 --- a/examples/cron/images.sh +++ b/examples/cron/images.sh @@ -78,7 +78,7 @@ do fi - lh build | tee debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.iso.log + lh build 2>&1 | tee 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 @@ -92,7 +92,7 @@ do lh clean --binary lh config -b usb-hdd - lh binary | tee debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.img.log + lh binary 2>&1 | tee 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 @@ -100,7 +100,7 @@ do lh clean --binary lh config -b net - lh binary | tee debian-live-${DISTRIBUTION}-i386-${FLAVOUR}-net.tar.gz.log + lh binary 2>&1 | tee 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 |