2020-10-20 17:50:20 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
here=$(dirname "$0")
|
2020-11-04 18:29:26 -08:00
|
|
|
|
|
|
|
maybe_bpf_sdk="--bpf-sdk $here/sdk/bpf"
|
|
|
|
for a in "$@"; do
|
|
|
|
if [[ $a = --bpf-sdk ]]; then
|
|
|
|
maybe_bpf_sdk=
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2020-10-20 17:50:20 -07:00
|
|
|
set -x
|
2020-11-04 18:29:26 -08:00
|
|
|
exec "$here"/cargo run --manifest-path "$here"/sdk/cargo-build-bpf/Cargo.toml -- $maybe_bpf_sdk "$@"
|