diff --git a/debian/changelog b/debian/changelog index 0b888ca7..9ac41a15 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +livecd-rootfs (0.62) UNRELEASED; urgency=low + + * Use 'set -eu' rather than putting -eu on the #! line, so that running + 'sh -x /usr/sbin/livecd.sh' for testing doesn't invoke different + error-handling behaviour. + + -- Colin Watson Tue, 08 Jul 2008 10:14:50 +0100 + livecd-rootfs (0.61) intrepid; urgency=low * Use apt pinning to force use of the version of ssl-cert from the hardy diff --git a/livecd.sh b/livecd.sh index a29664cb..30782541 100755 --- a/livecd.sh +++ b/livecd.sh @@ -1,4 +1,5 @@ -#!/bin/bash -eu +#!/bin/bash +set -eu ########################################################################## #### (c) Copyright 2004-2007 Canonical Ltd. #####