[java-policy] 178/198: Use 'set -e' instead of '#!/bin/sh -e' in debian/java-common.postrm
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Wed Sep 23 07:49:43 UTC 2015
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository java-policy.
commit e135c86a1b59b6bf289bed33db235b024889fa79
Author: Emmanuel Bourg <ebourg at apache.org>
Date: Wed Apr 2 21:33:20 2014 +0000
Use 'set -e' instead of '#!/bin/sh -e' in debian/java-common.postrm
---
debian/changelog | 1 +
debian/java-common.postrm | 4 +++-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/debian/changelog b/debian/changelog
index 74cfcf3..6b0cc93 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ java-common (0.52) UNRELEASED; urgency=medium
* Team upload.
* Prepared the default values for Java 8
+ * Use 'set -e' instead of '#!/bin/sh -e' in debian/java-common.postrm
* Switch to debhelper level 9
* debian/control:
- Standards-Version updated to 3.9.5 (no changes)
diff --git a/debian/java-common.postrm b/debian/java-common.postrm
index 4e16477..5f7f974 100644
--- a/debian/java-common.postrm
+++ b/debian/java-common.postrm
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
case "$1" in
purge)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/java-policy.git
More information about the pkg-java-commits
mailing list