[pacman-dev] [PATCH 8/8] grouping requires semicolons
Allan McRae
allan at archlinux.org
Wed Nov 14 03:19:00 UTC 2018
On 5/11/18 11:27 pm, Que Quotion wrote:
> From: Que Quotion <quequotion at gmail.com>
>
^ this is where context goes. It will help me to understand why this
patch is needed.
> Signed-off-by: Que Quotion <quequotion at gmail.com>
> ---
> scripts/libmakepkg/executable/gpg.sh.in | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/libmakepkg/executable/gpg.sh.in b/scripts/libmakepkg/executable/gpg.sh.in
> index f53f186d..8b6b8aa2 100644
> --- a/scripts/libmakepkg/executable/gpg.sh.in
> +++ b/scripts/libmakepkg/executable/gpg.sh.in
> @@ -28,8 +28,8 @@ source "$LIBRARY/util/option.sh"
> executable_functions+=('executable_gpg')
>
> executable_gpg() {
> - if { [[ $SIGNPKG == 'y' ]] || { [[ -z $SIGNPKG ]] && check_buildenv "sign" "y"; } } || \
> - { (( ! SKIPPGPCHECK )) && source_has_signatures }; then
> + if { [[ $SIGNPKG == 'y' ]] || { [[ -z $SIGNPKG ]] && check_buildenv "sign" "y"; }; } || \
> + { (( ! SKIPPGPCHECK )) && source_has_signatures; }; then
> if ! type -p gpg >/dev/null; then
> error "$(gettext "Cannot find the %s binary required for signing packages.")" "gpg"
> ret=1
>
More information about the pacman-dev
mailing list