From 510d152ee5678cbff4a3f0f55b9ed2ad699b7c55 Mon Sep 17 00:00:00 2001 From: hasham7861 Date: Thu, 16 Nov 2023 19:59:15 -0500 Subject: [PATCH] [Tag]: removing cdnvm command in readme for bashrc file There is an uncessary `cdnvm "$PWD" || exit` taking place and not all the systems that have bash come with it, so its uncessary --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index de24075474..143aa5905f 100644 --- a/README.md +++ b/README.md @@ -626,7 +626,7 @@ cdnvm() { } alias cd='cdnvm' -cdnvm "$PWD" || exit + ``` This alias would search 'up' from your current directory in order to detect a `.nvmrc` file. If it finds it, it will switch to that version; if not, it will use the default version.