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