solana/sdk/bpf/rust-utils/clean.sh

17 lines
251 B
Bash
Raw Normal View History

2019-05-21 11:22:33 -07:00
#!/usr/bin/env bash
if [ "$#" -ne 1 ]; then
echo "Error: Must provide the full path to the project to build"
exit 1
fi
2019-05-22 15:09:59 -07:00
if [ ! -f "$1/Cargo.toml" ]; then
2019-05-21 11:22:33 -07:00
echo "Error: Cannot find project: $1"
exit 1
fi
cd "$1"
set -ex
cargo clean