diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2017-07-06 05:14:14 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2017-07-06 05:21:42 +0200 |
commit | b14ff6603809019f8f92f1650872cb93a110e67e (patch) | |
tree | e75e887144d10bdfe8830c768b8c0baffbbed0b2 /scripts/libmakepkg/integrity | |
parent | d4193d43cf5346b3a8cfc97a4fc354111df34081 (diff) | |
download | pacman-b14ff6603809019f8f92f1650872cb93a110e67e.tar.gz pacman-b14ff6603809019f8f92f1650872cb93a110e67e.tar.xz |
libmakepkg: Fix improperly spelled local variable declaration
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/libmakepkg/integrity')
-rw-r--r-- | scripts/libmakepkg/integrity/verify_signature.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/libmakepkg/integrity/verify_signature.sh.in b/scripts/libmakepkg/integrity/verify_signature.sh.in index 5468f977..24519dbe 100644 --- a/scripts/libmakepkg/integrity/verify_signature.sh.in +++ b/scripts/libmakepkg/integrity/verify_signature.sh.in @@ -33,7 +33,7 @@ check_pgpsigs() { msg "$(gettext "Verifying source file signatures with %s...")" "gpg" local netfile proto pubkey success status fingerprint trusted - local warning=0 + local warnings=0 local errors=0 local statusfile=$(mktemp) local all_sources |