From 81429f65ddef68e57e64815a45b0f0aa678bc1ef Mon Sep 17 00:00:00 2001
From: mtsio <mtsio@cryptolab.net>
Date: Wed, 30 Nov 2016 23:06:17 +0200
Subject: [PATCH] fix verification warnings

---
 helpers/config | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/helpers/config b/helpers/config
index 298c4fcc..ab021c1c 100755
--- a/helpers/config
+++ b/helpers/config
@@ -114,7 +114,9 @@ cd PACKAGES/$PACKAGE
 #Get package and uncompress it
 apt-get update -c $LOCAL_APT/etc/apt.conf
 apt-get source $PACKAGE --download-only -c ${LOCAL_APT}/etc/apt.conf
-dpkg-source -x --skip-patches *.dsc source
+# verify it first
+gpgv --keyring ${LOCAL_APT}/etc/trusted.gpg *.dsc
+dpkg-source --no-check -x --skip-patches *.dsc source
 
 find -maxdepth 1 -type f | xargs rm
 cd source
-- 
GitLab