From 688dd85e619bdfb0b8013873d8a99cf51f5c6b6c Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 15 Oct 2020 17:59:24 +0000 Subject: [PATCH] Release: Use pinned cargo version to install spl-token-cli (#12916) (cherry picked from commit bb2f0df9e149e3d8c8b655852619a7cbc3460d45) Co-authored-by: Trent Nelson --- scripts/cargo-install-all.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/cargo-install-all.sh b/scripts/cargo-install-all.sh index ece7a61b10..7f3c1f0916 100755 --- a/scripts/cargo-install-all.sh +++ b/scripts/cargo-install-all.sh @@ -112,7 +112,8 @@ mkdir -p "$installDir/bin" set -x # shellcheck disable=SC2086 # Don't want to double quote $rust_version $cargo $maybeRustVersion build $maybeReleaseFlag "${binArgs[@]}" - $cargo install spl-token-cli --root "$installDir" + # shellcheck disable=SC2086 # Don't want to double quote $rust_version + $cargo $maybeRustVersion install spl-token-cli --root "$installDir" ) for bin in "${BINS[@]}"; do