mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
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>
This commit is contained in:
parent
3d9f961d13
commit
17c3de3e4f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user