8 lines
168 B
Bash
8 lines
168 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
cd "$(realpath $(dirname $0))"
|
||
|
|
||
|
bazel build :pelorama_relay
|
||
|
|
||
|
exec ../../bazel-bin/projects/pelorama_relay/pelorama_relay -c $(realpath ./relay.yaml)
|