diff options
author | Christian Hesse <list@eworm.de> | 2012-11-03 15:43:44 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2012-11-27 15:16:15 +1000 |
commit | 0285c678ab65898ff1fec4170f5389921c9f872e (patch) | |
tree | 6fee06729fa8fd47379bbc9d90ea668a8bb58b29 /scripts/makepkg.sh.in | |
parent | 3232c975c6e67a01f201cc7e341f979420cd3645 (diff) | |
download | pacman-0285c678ab65898ff1fec4170f5389921c9f872e.tar.xz |
makepkg: fix signing built package
Fixes issue introduced in 9dd42dc0
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/makepkg.sh.in')
-rw-r--r-- | scripts/makepkg.sh.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index a9d8e64c..30d034ae 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -2646,6 +2646,7 @@ fi # check if gpg signature is to be created and if signing key is valid if { [[ -z $SIGNPKG ]] && check_buildenv "sign" "y"; } || [[ $SIGNPKG == 'y' ]]; then + SIGNPKG='y' if ! gpg --list-key ${GPGKEY} &>/dev/null; then if [[ ! -z $GPGKEY ]]; then error "$(gettext "The key %s does not exist in your keyring.")" "${GPGKEY}" |