summaryrefslogtreecommitdiff
path: root/scripts/makepkg.sh.in
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2015-01-02 21:43:56 +1000
committerAllan McRae <allan@archlinux.org>2015-01-02 21:43:56 +1000
commitfafcbdeb8c7af439f2f3b85fa82f27b1dd4a3f79 (patch)
tree66a885c0be9dbc9d3049e69fb43624a9f04e2830 /scripts/makepkg.sh.in
parentf1e010a5a7c562da02a74ffb043520760db49ba3 (diff)
parent89b9e9d1dced68587b704cb9e9a2aab55fb60b06 (diff)
Merge branch 'maint'
Diffstat (limited to 'scripts/makepkg.sh.in')
-rw-r--r--scripts/makepkg.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 0db99120..880e7781 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -1499,7 +1499,7 @@ check_pgpsigs() {
esac
errors=1
else
- if (( ${#validpgpkeys[@]} == 0 && ! $trusted )); then
+ if (( ${#validpgpkeys[@]} == 0 && !trusted )); then
printf "%s ($(gettext "the public key %s is not trusted"))" $(gettext "FAILED") "$fingerprint" >&2
errors=1
elif (( ${#validpgpkeys[@]} > 0 )) && ! in_array "$fingerprint" "${validpgpkeys[@]}"; then