Bump version to 1.4.3

This commit is contained in:
Trent Nelson
2020-10-22 20:48:19 -06:00
committed by mergify[bot]
parent a4ad2925a2
commit 53b074aa35
107 changed files with 729 additions and 728 deletions

View File

@@ -3,7 +3,7 @@ authors = ["Solana Maintainers <maintainers@solana.foundation>"]
edition = "2018"
name = "solana-scripts"
description = "Blockchain, Rebuilt for Scale"
version = "1.4.2"
version = "1.4.3"
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"

View File

@@ -1,6 +1,7 @@
#!/usr/bin/env bash
set -e
cargo="$(readlink -f "$(dirname "$0")/../cargo")"
shifted_args=()
while [[ -n $1 ]]; do
@@ -37,7 +38,7 @@ for lock_file in $files; do
echo "--- [$lock_file]: cargo " "${shifted_args[@]}" "$@"
fi
if (set -x && cd "$(dirname "$lock_file")" && cargo "${shifted_args[@]}" "$@"); then
if (set -x && cd "$(dirname "$lock_file")" && "$cargo" "${shifted_args[@]}" "$@"); then
# noop
true
else