Pierre Gruet pushed to branch master at Debian Java Maintainers / jalview


Commits:
29e5bfb7 by Pierre Gruet at 2021-02-22T17:53:04+01:00
Use set -e rather than passing -e on the shebang-line.

Changes-By: lintian-brush
Fixes: lintian: maintainer-script-without-set-e
See-also: https://lintian.debian.org/tags/maintainer-script-without-set-e.html

- - - - -
f9dd790f by Pierre Gruet at 2021-02-22T17:53:50+01:00
Setting debian/postrm as set -e script as well

- - - - -


3 changed files:

- debian/config
- debian/postinst
- debian/postrm


Changes:

=====================================
debian/config
=====================================
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 # Source debconf library.
 . /usr/share/debconf/confmodule


=====================================
debian/postinst
=====================================
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 # Source debconf library.
 . /usr/share/debconf/confmodule


=====================================
debian/postrm
=====================================
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 # If purging the package, remove the configuration file if it exists.
 if [ "$1" = "purge" -a -e /etc/jalview_properties ]; then



View it on GitLab: 
https://salsa.debian.org/java-team/jalview/-/compare/936ed870d8ff55926e2b912dc3f19f029cdda35e...f9dd790fd4c0269dec071f54e4a2ea38923d3f4b

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/jalview/-/compare/936ed870d8ff55926e2b912dc3f19f029cdda35e...f9dd790fd4c0269dec071f54e4a2ea38923d3f4b
You're receiving this email because of your account on salsa.debian.org.


_______________________________________________
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to