From 2892dc35cd416e482896d6d16509aa5fa4a0e29c Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sun, 3 Sep 2023 23:15:10 -0400 Subject: [PATCH] tweaking rust installation --- README.md | 2 +- home/run_once_02install-rust.sh.tmpl | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 54f68f9..b068ec1 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ sudo hostnamectl set-hostname $MY_HOSTNAME.local # debian wsl -echo "[network]\nhostname = $MY_HOSTNAME" | sudo tee -a /etc/wsl.conf +echo -e "[network]\nhostname = $MY_HOSTNAME" | sudo tee -a /etc/wsl.conf # macos sudo scutil --set HostName $MY_HOSTNAME.local diff --git a/home/run_once_02install-rust.sh.tmpl b/home/run_once_02install-rust.sh.tmpl index 0bdbb2d..e3e7dec 100644 --- a/home/run_once_02install-rust.sh.tmpl +++ b/home/run_once_02install-rust.sh.tmpl @@ -2,7 +2,8 @@ set -e -curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o /tmp/rustup.sh && \ - chmod u+x /tmp/rustup.sh && \ - /tmp/rustup.sh -y && \ - rustup update stable +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o /tmp/rustup.sh +chmod u+x /tmp/rustup.sh +/tmp/rustup.sh -y --no-modify-path +source $HOME/.cargo/env +rustup update stable