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 16c6a9f89d
commit 9d63d0ee9b
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()