mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
15 lines
240 B
Bash
Executable File
15 lines
240 B
Bash
Executable File
#!/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"
|