Bump to tor 0.4.4.7

Add rust in the tor build stage
also ignore GPG_KEY to avoid waring at startup
This commit is contained in:
Chirstophe Mehay 2021-02-13 00:07:48 +01:00 committed by Christophe Mehay
parent 5d4e7a6c9c
commit 3a65c8dc48
2 changed files with 4 additions and 3 deletions

View file

@ -198,7 +198,8 @@ class Setup(object):
for reg, call in match_map:
for key, val in os.environ.items():
m = match(reg, key)
if m:
# Ignore GPG_KEY env variable to avoid warning (this is a deprecated setup)
if m and key != 'GPG_KEY':
try:
call(m.groups()[0].lower(), val)
except BaseException as e: