Re-org SDK dir (#4690)

This commit is contained in:
Jack May
2019-06-17 11:04:38 -07:00
committed by GitHub
parent 5bf87de136
commit 2a7a9fdf03
45 changed files with 40 additions and 40 deletions

17
sdk/bpf/rust/clean.sh Executable file
View File

@ -0,0 +1,17 @@
#!/usr/bin/env bash
if [ "$#" -ne 1 ]; then
echo "Error: Must provide the full path to the project to build"
exit 1
fi
if [ ! -f "$1/Cargo.toml" ]; then
echo "Error: Cannot find project: $1"
exit 1
fi
cd "$1"
set -e
echo "Cleaning $1"
cargo clean