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

17 lines
240 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
if [ ! -d "$1" ]; then
echo "Error: Cannot find project: $1"
exit 1
fi
cd "$1"
set -ex
cargo clean