Set pipefail (bash-specific) in auto/build so that we fail immediately

if the main image build fails.
ubuntu/precise
Colin Watson 14 years ago
parent 358f12f48d
commit 5b53e147aa

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (2.3) UNRELEASED; urgency=low
* Set pipefail (bash-specific) in auto/build so that we fail immediately
if the main image build fails.
-- Colin Watson <cjwatson@ubuntu.com> Tue, 14 Jun 2011 08:58:02 +0100
livecd-rootfs (2.2) oneiric; urgency=low
* Pass --linux-flavours to lb config if necessary.

@ -1,5 +1,6 @@
#! /bin/sh
#! /bin/bash
set -e
set -o pipefail
export LC_ALL=C

Loading…
Cancel
Save