mirror of
https://github.com/bdwgc/bdwgc-rust.git
synced 2026-05-30 18:38:54 -06:00
14 lines
140 B
Bash
Executable File
14 lines
140 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
cargo build
|
|
|
|
for cargo_file in */Cargo.toml
|
|
do
|
|
target/debug/$(dirname $cargo_file) &
|
|
pid=$!
|
|
sleep 10
|
|
kill $pid
|
|
done
|