diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-31 21:04:52 -0600 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-06-05 19:53:19 -0600 |
commit | 29230b22081f9982f02d1c2fa46834089422d098 (patch) | |
tree | 51e7d6577ec8ac0967774127150be6725a141f6a | |
parent | b88e15c5ee6b0905c5622fef8565725a715e9b53 (diff) |
libreaddiff: use a shebang instead of `set -e`
-rwxr-xr-x | src/abslibre-tools/libreaddiff | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/abslibre-tools/libreaddiff b/src/abslibre-tools/libreaddiff index 98646a2..a75fb02 100755 --- a/src/abslibre-tools/libreaddiff +++ b/src/abslibre-tools/libreaddiff @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/bash -e # -*- coding: utf-8 -*- # Copyright (C) 2011, 2012 Michał Masłowski <mtjm@mtjm.eu> # @@ -15,9 +15,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. - -set -e - . /etc/libretools.conf custom_config=$XDG_CONFIG_HOME/libretools/libretools.conf [ -e $custom_config ] && . $custom_config |