This is an automated email from the git hooks/post-receive script. apo-guest pushed a commit to branch master in repository tecnoballz.
commit 652f5d18d6fb9d45b8eccd063644b7ef167c1e4a Author: Barry deFreese <[email protected]> Date: Thu Apr 16 18:36:35 2009 +0000 Add set -e to maintainer scripts. --- debian/changelog | 1 + debian/tecnoballz.postinst | 2 ++ debian/tecnoballz.preinst | 2 ++ 3 files changed, 5 insertions(+) diff --git a/debian/changelog b/debian/changelog index 3068f51..8158fc3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,7 @@ tecnoballz (0.92-3) unstable; urgency=low * Move desktop file and icon under debian/ dir. * Add autoconf and automake to build-deps and autoreconf on build. * Clean up rules file and use .install files. + * Add set -e to maintainer scripts. * Bump debhelper build-dep and compat to 5. * Bump Standards Version to 3.8.1. + Menu policy transition. diff --git a/debian/tecnoballz.postinst b/debian/tecnoballz.postinst index 7fd96ef..99d2e64 100644 --- a/debian/tecnoballz.postinst +++ b/debian/tecnoballz.postinst @@ -1,5 +1,7 @@ #!/bin/sh +set -e + DOCDIR=/usr/share/doc/tecnoballz SCOREDIR=/var/games/tecnoballz PROG=/usr/games/tecnoballz diff --git a/debian/tecnoballz.preinst b/debian/tecnoballz.preinst index 550429c..829cdb8 100644 --- a/debian/tecnoballz.preinst +++ b/debian/tecnoballz.preinst @@ -1,5 +1,7 @@ #!/bin/sh +set -e + SCOREDIR=/var/games/tecnoballz case "$1" in -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/tecnoballz.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

