puter/tools/build_relay.sh

18 lines
241 B
Bash
Raw Normal View History

2024-09-18 18:48:55 +00:00
#!/bin/bash
start_dir=$(pwd)
cleanup() {
cd "$start_dir"
}
trap cleanup ERR EXIT
set -e
echo -e "\x1B[36;1m<<< Building epoxy-tls >>>\x1B[0m"
cd submodules/epoxy-tls
rustup install nightly
rustup override set nightly
cargo b -r
cd -