Remove |cargo install| duplication

This commit is contained in:
Michael Vines
2018-12-11 22:50:42 -08:00
committed by Grimes
parent 080d18b06e
commit 088bab61a4
5 changed files with 16 additions and 10 deletions

10
scripts/cargo-install-all.sh Executable file
View File

@ -0,0 +1,10 @@
#!/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 "$@"
cargo install --path . "$@"