From 6c9cd2f2d1779b91c0ab7ab0b243c0c55f25a8a5 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Fri, 15 Dec 2023 09:46:35 -0800 Subject: [PATCH 1/2] [security] fix typo in threat model --- .github/THREAT_MODEL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/THREAT_MODEL.md b/.github/THREAT_MODEL.md index 81ea16d..f5b3794 100644 --- a/.github/THREAT_MODEL.md +++ b/.github/THREAT_MODEL.md @@ -11,7 +11,7 @@ The aim of this section is to facilitate the identification of potential securit The following assets are considered important for the `nvm` project: - `nvm` source code and project documentation - - Underlying `nvm`` dependencies + - Underlying `nvm` dependencies - `nvm` development infrastructure - `nvm` installed devices including servers From 4e2a71ba9be7ce628f4127c4306820f9eccac6fc Mon Sep 17 00:00:00 2001 From: jbidad <51882296+jbidad@users.noreply.github.com> Date: Thu, 18 Jan 2024 12:07:01 +0330 Subject: [PATCH 2/2] [Docs] add `nvm unload` to uninstall nvm instructions --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 21bca85..33df4cb 100644 --- a/README.md +++ b/README.md @@ -844,6 +844,8 @@ As a potential alternative, @mhart (a Node contributor) has some [Docker images To remove `nvm` manually, execute the following: +First, use `nvm unload` to remove the nvm command from your terminal session. then: + ```sh $ rm -rf "$NVM_DIR" ```