summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-09-06 20:11:15 +0200
committerDan McGee <dan@archlinux.org>2011-09-08 04:05:04 +0200
commit17c3de3e4f6b03953e22d203d5891b37ffdf941c (patch)
treec6fb9071444443e378b73a1ae1c18448810dc1bd /scripts
parent3d9f961d1367bf1669332047e667f98b9d35531e (diff)
downloadpacman-17c3de3e4f6b03953e22d203d5891b37ffdf941c.tar.gz
pacman-17c3de3e4f6b03953e22d203d5891b37ffdf941c.tar.xz
makepkg: act on function return value, not output
Correcting a typo, as this function will never output anything. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'scripts')
-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 22ae8453..ff1ddf8a 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -1614,7 +1614,7 @@ check_software() {
fi
# gpg - source verification
- if (( ! SKIPPGPCHECK )) && [[ source_has_signatures ]]; then
+ if (( ! SKIPPGPCHECK )) && source_has_signatures; then
if ! type -p gpg >/dev/null; then
error "$(gettext "Cannot find the %s binary required for verifying source files.")" "gpg"
ret=1