1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-22 07:48:50 -05:00

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>
This commit is contained in:
Dave Reisner 2011-09-30 06:07:55 -04:00 committed by Dan McGee
parent 07ecd40a1a
commit 938fb2c878

View File

@ -1,4 +1,4 @@
#!/bin/bash -e #!/bin/bash
# #
# pacman-key - manages pacman's keyring # pacman-key - manages pacman's keyring
# Based on apt-key, from Debian # Based on apt-key, from Debian