index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dave Reisner <dreisner@archlinux.org> | 2014-12-29 22:35:53 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2015-01-02 21:43:28 +1000 |
commit | 80e6d8a6fe3c94e9a385322494b27885837b7b3a (patch) | |
tree | 157d756c23e11b63ffca85d6be4f369a22d2c490 /scripts/makepkg.sh.in | |
parent | ca5a2771aeb0babca8270b83b0cb0172db4cebe5 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 18b2822c..1cd8756d 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1498,7 +1498,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 |