Files
brk/server/run.sh
2024-09-13 22:59:20 +02:00

14 lines
263 B
Bash
Executable File

#!/usr/bin/env bash
if cargo watch --help &> /dev/null; then
TRIGGER="./in/datasets_len.txt"
if [ ! -f "$TRIGGER" ]; then
echo "0" > $TRIGGER
fi
cargo watch --no-vcs-ignores -w "./src" -w "$TRIGGER" -x "run -r"
else
cargo run -r
fi