Skip to content

Commit e3431cd

Browse files
committed
dev: add build script for relay
1 parent 48873b6 commit e3431cd

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

tools/build_relay.sh

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
#!/bin/bash
3+
4+
start_dir=$(pwd)
5+
cleanup() {
6+
cd "$start_dir"
7+
}
8+
trap cleanup ERR EXIT
9+
set -e
10+
11+
echo -e "\x1B[36;1m<<< Building epoxy-tls >>>\x1B[0m"
12+
13+
cd submodules/epoxy-tls
14+
rustup install nightly
15+
rustup override set nightly
16+
cargo b -r
17+
cd -

0 commit comments

Comments
 (0)