Skip to content

Commit

Permalink
dev: add build script for relay
Browse files Browse the repository at this point in the history
  • Loading branch information
KernelDeimos committed Sep 18, 2024
1 parent 166c590 commit 7e31920
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tools/build_relay.sh
Original file line number Diff line number Diff line change
@@ -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 -

0 comments on commit 7e31920

Please sign in to comment.