Use "set -e" instead of "#!/bin/sh -e" in maintainer scripts
Fixes lintian warning maintainer-script-without-set-e three times.
Axel Beckert
6 years ago
9 | 9 |
+ Use files debian/install and debian/manpages instead of overrides.
|
10 | 10 |
* Switch to source format "3.0 (native)"
|
11 | 11 |
* Fix typo in man-page. Thanks lintian!
|
|
12 |
* Use "set -e" instead of "#!/bin/sh -e" in maintainer scripts.
|
12 | 13 |
|
13 | 14 |
-- Axel Beckert <abe@debian.org> Sat, 08 Oct 2016 00:33:40 +0200
|
14 | 15 |
|
0 | |
#!/bin/sh -e
|
|
0 |
#!/bin/sh
|
|
1 |
|
|
2 |
set -e
|
1 | 3 |
|
2 | 4 |
# Source debconf library.
|
3 | 5 |
. /usr/share/debconf/confmodule
|
0 | |
#!/bin/sh -e
|
|
0 |
#!/bin/sh
|
|
1 |
|
|
2 |
set -e
|
1 | 3 |
|
2 | 4 |
# Source debconf library.
|
3 | 5 |
. /usr/share/debconf/confmodule
|
0 | |
#!/bin/sh -e
|
|
0 |
#!/bin/sh
|
|
1 |
|
|
2 |
set -e
|
1 | 3 |
|
2 | 4 |
if [ "$1" = purge ]
|
3 | 5 |
then
|