[SCM] jackd2/master: Tidy shell scripts: Explicitly set -e (not in hash-bang).

js at users.alioth.debian.org js at users.alioth.debian.org
Thu Dec 27 11:58:12 UTC 2012


The following commit has been merged in the master branch:
commit 3c6b81c9502aaea198c337e6d72d107d128e6352
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Thu Dec 27 12:45:11 2012 +0100

    Tidy shell scripts: Explicitly set -e (not in hash-bang).

diff --git a/debian/jackd2.config b/debian/jackd2.config
index 679de7b..28deb52 100644
--- a/debian/jackd2.config
+++ b/debian/jackd2.config
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 # Source debconf library.
 . /usr/share/debconf/confmodule
diff --git a/debian/jackd2.postinst b/debian/jackd2.postinst
index edd1b94..baf95bb 100644
--- a/debian/jackd2.postinst
+++ b/debian/jackd2.postinst
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 # Source debconf library.
 . /usr/share/debconf/confmodule
diff --git a/debian/jackd2.postrm b/debian/jackd2.postrm
index 664426d..a1d92dc 100644
--- a/debian/jackd2.postrm
+++ b/debian/jackd2.postrm
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 CONFIG_FILE=/etc/security/limits.d/audio.conf
 

-- 
jackd2 packaging



More information about the pkg-multimedia-commits mailing list