From d9c772a76dae70376b4234c07d0e366e83db5d38 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Tue, 11 Apr 2023 13:33:05 -0700 Subject: [PATCH] development/rust: don't modify the path In the automated install, the default is to automatically append to the user's profile file. I already have a check in my profile, and I don't want to duplicate this. --- roles/development/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/development/tasks/main.yml b/roles/development/tasks/main.yml index 82b4f19..9fb9e09 100644 --- a/roles/development/tasks/main.yml +++ b/roles/development/tasks/main.yml @@ -238,7 +238,7 @@ - name: install rust/cargo when: (dev_rust or dev_full) and (cargo_exists is failed) - shell: /tmp/sh.rustup.rs -y + shell: /tmp/sh.rustup.rs -y --no-modify-path ## AI/ML stuff