From 0da2f73eb432b53fdef284a9509dc266de6e36f1 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 15 Oct 2020 17:55:15 +0000 Subject: [PATCH] Release: Use pinned cargo version to install spl-token-cli (#12915) (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 5e09638cf7..8bdba8bd5d 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