Skip to content

Commit

Permalink
Compilable now
Browse files Browse the repository at this point in the history
Signed-off-by: neojou <neojou@gmail.com>
  • Loading branch information
neojou committed Dec 27, 2022
1 parent 102dd65 commit b14636f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion solana-1.13.5/cargo
Expand Up @@ -25,4 +25,4 @@ case "$1" in
esac

set -x
exec cargo "+${toolchain}" "${@}"
exec cargo "${@}"
5 changes: 3 additions & 2 deletions solana-1.13.5/ci/rust-version.sh
Expand Up @@ -38,10 +38,11 @@ export rust_nightly_docker_image=solanalabs/rust-nightly:"$nightly_version"

rustup_install() {
declare toolchain=$1
if ! cargo +"$toolchain" -V > /dev/null; then
# if ! cargo +"$toolchain" -V > /dev/null; then
if ! cargo -vv build > /dev/null; then
echo "$0: Missing toolchain? Installing...: $toolchain" >&2
rustup install "$toolchain"
cargo +"$toolchain" -V
cargo -vv build
fi
}

Expand Down

0 comments on commit b14636f

Please sign in to comment.