From edc1befb65caa90af2971f3cd8665d0ac5e231a6 Mon Sep 17 00:00:00 2001 From: akkolwalkar Date: Tue, 19 May 2020 15:17:42 +0530 Subject: [PATCH] change in rust installation steps Proposed changes made in rust installation steps at discovery gives issues when you try discovery start, it shows that rustup hasn't been installed. --- docs/Installation.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/Installation.md b/docs/Installation.md index 8a49379..f02e678 100644 --- a/docs/Installation.md +++ b/docs/Installation.md @@ -63,8 +63,15 @@ docker-compose --version sudo apt-get --assume-yes install git-all #rust install steps #Note: the following line was altered to avoid a prompt +""" +These steps fail instead curl -s https://sh.rustup.rs | bash /dev/stdin -y source $HOME/.cargo/env + +""" +# try to install rust +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh + #nvm install steps curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash export NVM_DIR="$HOME/.nvm"