feat: add bundled tor s9pk download and build infrastructure

This commit is contained in:
Aiden McClelland
2026-03-16 13:38:27 -06:00
parent 65e1c9e5d8
commit 9f7bc74a1e
5 changed files with 44 additions and 1 deletions

14
build/download-tor-s9pk.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
cd "$(dirname "${BASH_SOURCE[0]}")"
set -e
ARCH=$1
if [ -z "$ARCH" ]; then
>&2 echo "usage: $0 <ARCH>"
exit 1
fi
curl --fail -L -o "./lib/tor_${ARCH}.s9pk" "https://s9pks.nyc3.cdn.digitaloceanspaces.com/tor_${ARCH}.s9pk"