10 lines
79 B
Bash
10 lines
79 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
pushd ci || exit
|
||
|
|
||
|
cargo build
|
||
|
|
||
|
popd || exit
|
||
|
|
||
|
./ci/target/debug/ci
|