Files
brk/server/run.sh
2024-08-05 00:44:46 +02:00

8 lines
210 B
Bash
Executable File

if cargo watch --help &> /dev/null; then
TRIGGER="./in/datasets_len.txt"
echo "0" > $TRIGGER
cargo watch --no-vcs-ignores -w "./src" -w "./run.sh" -w "$TRIGGER" -x "run -r"
else
cargo run -r
fi