mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 13:11:31 +00:00
hypha: implement basic networking support
This commit is contained in:
@ -2,5 +2,5 @@
|
||||
set -e
|
||||
|
||||
cd "$(dirname "${0}")/.."
|
||||
cargo fmt --all
|
||||
cargo clippy --target x86_64-unknown-linux-gnu --fix --allow-dirty --allow-staged
|
||||
cargo fmt --all
|
||||
|
11
scripts/hyphanet-debug.sh
Executable file
11
scripts/hyphanet-debug.sh
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
if [ -z "${RUST_LOG}" ]
|
||||
then
|
||||
RUST_LOG="INFO"
|
||||
fi
|
||||
|
||||
cd "$(dirname "${0}")/.."
|
||||
cargo build --target x86_64-unknown-linux-gnu --bin hyphanet
|
||||
exec sudo RUST_LOG="${RUST_LOG}" target/x86_64-unknown-linux-gnu/debug/hyphanet "${@}"
|
Reference in New Issue
Block a user