mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 13:11:31 +00:00
13 lines
289 B
Bash
13 lines
289 B
Bash
![]() |
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if [ -z "${RUST_LOG}" ]
|
||
|
then
|
||
|
RUST_LOG="INFO"
|
||
|
fi
|
||
|
|
||
|
REAL_SCRIPT="$(realpath "${0}")"
|
||
|
cd "$(dirname "${REAL_SCRIPT}")/.."
|
||
|
cargo build -q --target x86_64-unknown-linux-gnu --bin kratanet
|
||
|
exec sudo RUST_LOG="${RUST_LOG}" target/x86_64-unknown-linux-gnu/debug/kratanet "${@}"
|