Update our bridge templates with the latest built-in bridges in the get-tor scripts

This commit is contained in:
Miguel Jacq 2021-12-10 15:34:44 +11:00
parent a71a4f9baa
commit be8a2a894f
No known key found for this signature in database
GPG key ID: EEA4341C6D97A0B6
8 changed files with 115 additions and 16 deletions

View file

@ -31,6 +31,7 @@ import hashlib
import shutil
import subprocess
import requests
from bridges import UpdateTorBridges
def main():
@ -126,6 +127,9 @@ def main():
print(f"Tor binaries extracted to: {dist_path}")
# Fetch the built-in bridges
UpdateTorBridges(root_path)
if __name__ == "__main__":
main()