Skip to content

Commit

Permalink
Copy config files as part of signing setup
Browse files Browse the repository at this point in the history
  • Loading branch information
cqcallaw committed Nov 22, 2020
1 parent 6da960c commit 94f0dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sign.py
Expand Up @@ -37,7 +37,7 @@ def create_worker_dirs(working_dir: str, pool_size: int):
dest = os.path.join(working_dir, "ForkPoolWorker-" + str(i))
print("Generating worker dir", dest)
os.makedirs(dest, exist_ok=True)
for f in ['pubring.gpg', 'trustdb.gpg']:
for f in ['pubring.gpg', 'trustdb.gpg', 'gpg.conf', 'gpa.conf']:
shutil.copyfile(
os.path.join(pg_src, f),
os.path.join(dest, f)
Expand Down

0 comments on commit 94f0dbb

Please sign in to comment.