summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-09-30 12:07:55 +0200
committerDan McGee <dan@archlinux.org>2011-09-30 17:48:28 +0200
commit938fb2c87859cf495ac72d678d4edb9f6c3217c2 (patch)
tree12b4c2b738a5afb547657f82468bd4cb8dbf01bf
parent07ecd40a1a1ffba5e5b1c3edd199a0f159496c48 (diff)
downloadpacman-938fb2c87859cf495ac72d678d4edb9f6c3217c2.tar.gz
pacman-938fb2c87859cf495ac72d678d4edb9f6c3217c2.tar.xz
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 <dreisner@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--scripts/pacman-key.sh.in2
1 files changed, 1 insertions, 1 deletions
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