aboutsummaryrefslogtreecommitdiff
path: root/desktop/scripts/get-tor-linux.py
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2022-01-16 15:49:33 -0800
committerMicah Lee <micah@micahflee.com>2022-01-16 15:49:33 -0800
commit9e99ad8b8d6f0eb0a2162191ec31a68e7c3acee5 (patch)
tree5a5215260866bd07adc60ead1ae0d1b6cd93174b /desktop/scripts/get-tor-linux.py
parent74711e7d7c7b825fc580c612530569195156794a (diff)
parentb4e022149d677f9c2acd639e9dfa77bcc712b068 (diff)
downloadonionshare-9e99ad8b8d6f0eb0a2162191ec31a68e7c3acee5.tar.gz
onionshare-9e99ad8b8d6f0eb0a2162191ec31a68e7c3acee5.zip
Merge branch 'develop' of github.com:onionshare/onionshare into ros-fixes
Diffstat (limited to 'desktop/scripts/get-tor-linux.py')
-rwxr-xr-xdesktop/scripts/get-tor-linux.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/desktop/scripts/get-tor-linux.py b/desktop/scripts/get-tor-linux.py
index 51beb475..a911713d 100755
--- a/desktop/scripts/get-tor-linux.py
+++ b/desktop/scripts/get-tor-linux.py
@@ -31,6 +31,7 @@ import hashlib
import shutil
import subprocess
import requests
+from bridges import UpdateTorBridges
def main():
@@ -46,7 +47,7 @@ def main():
)
working_path = os.path.join(root_path, "build", "tor")
tarball_path = os.path.join(working_path, tarball_filename)
- dist_path = os.path.join(root_path, "src", "onionshare", "resources", "tor")
+ dist_path = os.path.join(root_path, "onionshare", "resources", "tor")
# Make sure dirs exist
if not os.path.exists(working_path):
@@ -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()