From 6cdc1f6aa943c0f68dc0b5e73b7f867d1995e45b Mon Sep 17 00:00:00 2001 From: ajasibley <125228925+ajasibley@users.noreply.github.com> Date: Thu, 25 May 2023 02:27:08 -0700 Subject: [PATCH] Updated installation check in install-rust just recipe. --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 1bc11b576..573d6eba8 100644 --- a/justfile +++ b/justfile @@ -6,7 +6,7 @@ install-nix: # Check if Rust is installed, if not install it install-rust: - @if ! command -v rustc &> /dev/null; then \ + @if ! command -v rustup &> /dev/null; then \ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh; \ . {{scripts_dir}}/update_path.sh; \ fi @@ -37,6 +37,6 @@ install-cosmo: else \ echo "Unsupported shell: $$current_shell"; \ fi; \ - fi + fiai all: install-nix install-rust install-wasm-target install-openssl install-cosmo