solana/scripts/cargo-install-all.sh

13 lines
287 B
Bash
Raw Normal View History

2018-12-11 22:50:42 -08:00
#!/usr/bin/env bash
#
# |cargo install| of the top-level crate will not install binaries for
# other workspace creates.
set -e
cd "$(dirname "$0")/.."
set -x
cargo install --path drone "$@"
2018-12-12 13:30:00 -08:00
cargo install --path keygen "$@"
2018-12-11 22:50:42 -08:00
cargo install --path . "$@"
2018-12-12 16:59:29 -08:00
cargo install --path fullnode "$@"