From 9a29888ba72694ed0a8cba620387b3ee1ee39baa Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Tue, 28 Jun 2011 22:36:41 -0400 Subject: makepkg: simplify SIGNPKG check Signed-off-by: Dave Reisner --- scripts/makepkg.sh.in | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'scripts/makepkg.sh.in') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index b7246f1c..b844c65f 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -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 -- cgit v1.2.3-24-g4f1b