mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
makepkg: simplify SIGNPKG check
Signed-off-by: Dave Reisner <d@falconindy.com>
This commit is contained in:
parent
5f6e8c9274
commit
9a29888ba7
@ -2008,9 +2008,7 @@ if [[ -n "${PKGLIST[@]}" ]]; then
|
||||
fi
|
||||
|
||||
# check if gpg signature is to be created and if signing key is valid
|
||||
if [[ -z "$SIGNPKG" && $(check_buildenv sign) == 'y' ]]; then
|
||||
SIGNPKG='y'
|
||||
fi
|
||||
[[ -z $SIGNPKG ]] && SIGNPKG=$(check_buildenv sign)
|
||||
if [[ $SIGNPKG == 'y' ]]; then
|
||||
if ! gpg --list-key ${GPGKEY} &>/dev/null; then
|
||||
if [[ ! -z $GPGKEY ]]; then
|
||||
|
Loading…
Reference in New Issue
Block a user