scripts/cargo-install-all.sh: Ensure `solana-genesis` is built last (#5827)

Workaround for #5826
This commit is contained in:
Trent Nelson 2019-09-06 21:00:24 -06:00 committed by Michael Vines
parent 1833db51a5
commit bdda79343e
1 changed files with 4 additions and 1 deletions

View File

@ -39,7 +39,6 @@ SECONDS=0
BIN_CRATES=(
drone
genesis
gossip
install
keygen
@ -51,6 +50,10 @@ BIN_CRATES=(
bench-tps
)
#XXX: Ensure `solana-genesis` is built LAST!
# See https://github.com/solana-labs/solana/issues/5826
BIN_CRATES+=( "genesis" )
for crate in "${BIN_CRATES[@]}"; do
(
set -x