diff options
author | Linus Nordberg <linus@nordberg.se> | 2015-04-13 16:39:19 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2015-04-13 16:39:19 +0200 |
commit | 80bc94506980ac588e6bb1ce5e8021be21dec2fe (patch) | |
tree | c44d158605bf4fe11434b620540a459a8441637d /tools | |
parent | 8af8203651390a048d510e47a9349effcf67af22 (diff) |
fixup! WIP
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/merge.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/merge.py b/tools/merge.py index e7db16e..76ffede 100755 --- a/tools/merge.py +++ b/tools/merge.py @@ -260,8 +260,8 @@ for hash in new_entries: entries_to_fetch[storagenode["name"]].append(hash) break -verifycert = subprocess.Popen(paths["verifycert_bin"], - stdin=subprocess.PIPE, stdout=subprocess.PIPE) +verifycert = subprocess.Popen([paths["verifycert_bin"], paths["known_roots"]], + stdin=subprocess.PIPE, stdout=subprocess.PIPE) added_entries = 0 for storagenode in storagenodes: |