mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 22:06:00 +00:00
dev: add build script for relay
This commit is contained in:
parent
48873b6d23
commit
e3431cd7f5
17
tools/build_relay.sh
Normal file
17
tools/build_relay.sh
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
#!/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 -
|
Loading…
Reference in New Issue
Block a user