mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-10 11:47:27 -03:00
9 lines
238 B
Bash
Executable file
9 lines
238 B
Bash
Executable file
#!/bin/bash
|
|
MEEK_TAG=v0.37.0
|
|
|
|
mkdir -p ./build/meek
|
|
cd ./build/meek
|
|
git clone https://git.torproject.org/pluggable-transports/meek.git
|
|
cd meek
|
|
git checkout $MEEK_TAG
|
|
go build -o ../../../onionshare/resources/tor/meek-client ./meek-client
|