gb/restart.sh

13 lines
163 B
Bash
Raw Normal View History

clear
pkill rustc -9
pkill botserver -9
pkill botui -9
cd botui
cargo build &
cd ../botserver
cargo build
cargo run -- --noconsole &
cd ../botui
cargo run &
cd ..