mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
9 lines
271 B
Bash
9 lines
271 B
Bash
|
#!/bin/bash
|
||
|
OBFS4PROXY_TAG=obfs4proxy-0.0.13
|
||
|
|
||
|
mkdir -p ./build/obfs4proxy
|
||
|
cd ./build/obfs4proxy
|
||
|
git clone https://gitlab.com/yawning/obfs4 || echo "already cloned"
|
||
|
cd obfs4
|
||
|
git checkout $OBFS4PROXY_TAG
|
||
|
go build -o ../../../onionshare/resources/tor/obfs4proxy ./obfs4proxy
|