10 lines
90 B
Bash
Executable File
10 lines
90 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd ci || exit
|
|
|
|
cargo build
|
|
|
|
popd || exit
|
|
|
|
dagger run ./ci/target/debug/ci
|