From 71097afb408463087ec5ada278da966099b2bdbb Mon Sep 17 00:00:00 2001 From: coreybutler Date: Fri, 10 Sep 2021 22:54:32 -0500 Subject: [PATCH] Updated inline help to accurately indicate the 'latest' tag installs the latest current version. Fixes #653 --- src/nvm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvm.go b/src/nvm.go index 9a53625..de339f0 100644 --- a/src/nvm.go +++ b/src/nvm.go @@ -595,7 +595,7 @@ func help() { fmt.Println("\nUsage:") fmt.Println(" ") fmt.Println(" nvm arch : Show if node is running in 32 or 64 bit mode.") - fmt.Println(" nvm install [arch] : The version can be a node.js version or \"latest\" for the latest stable version.") + fmt.Println(" nvm install [arch] : The version can be a node.js version or \"latest\" for the latest current version.") fmt.Println(" Optionally specify whether to install the 32 or 64 bit version (defaults to system arch).") fmt.Println(" Set [arch] to \"all\" to install 32 AND 64 bit versions.") fmt.Println(" Add --insecure to the end of this command to bypass SSL validation of the remote download server.")