From 938fb2c87859cf495ac72d678d4edb9f6c3217c2 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Fri, 30 Sep 2011 06:07:55 -0400 Subject: pacman-key: remove errexit flag from shebang We're ill equipped to be using this flag as we don't trap and respond to the ERR signal. The result is that if is ever tripped, pacman-key will instantly exit with no indication of why. At the same time, we're already fairly good about doing our own error checking and verbalizing it before dying. Signed-off-by: Dave Reisner Signed-off-by: Dan McGee --- scripts/pacman-key.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in index e293d496..7eebf7c8 100644 --- a/scripts/pacman-key.sh.in +++ b/scripts/pacman-key.sh.in @@ -1,4 +1,4 @@ -#!/bin/bash -e +#!/bin/bash # # pacman-key - manages pacman's keyring # Based on apt-key, from Debian -- cgit v1.2.3-24-g4f1b