mirror of
https://github.com/luzifer-docker/arch-repo-builder.git
synced 2024-12-20 17:41:19 +00:00
Fix: Variable naming
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
fe09c47717
commit
781759fda7
1 changed files with 3 additions and 3 deletions
|
@ -8,9 +8,9 @@ set -euo pipefail
|
|||
|
||||
source PKGBUILD
|
||||
|
||||
[ -n "${validgpgkeys:-}" ] || {
|
||||
echo "No 'validgpgkeys' directive found, nothing to do"
|
||||
[ -n "${validpgpkeys:-}" ] || {
|
||||
echo "No 'validpgpkeys' directive found, nothing to do"
|
||||
exit 0
|
||||
}
|
||||
|
||||
exec gpg --recv-keys "${validgpgkeys[@]}"
|
||||
exec gpg --recv-keys "${validpgpkeys[@]}"
|
||||
|
|
Loading…
Reference in a new issue