Skip to content

Commit

Permalink
fix: change NVM to nvm (#6722)
Browse files Browse the repository at this point in the history
* fix: change NVM to nvm

I believe `nvm` is always lowercase as seen in their readme 

https://github.com/nvm-sh/nvm/blob/master/README.md

Signed-off-by: Steven <steven@ceriously.com>

* fix: getNodeDownloadSnippet nvm comment

---------

Signed-off-by: Steven <steven@ceriously.com>
  • Loading branch information
styfle committed May 14, 2024
1 parent 6d03b62 commit 82f2999
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion util/downloadUtils.ts
Expand Up @@ -31,7 +31,7 @@ export const operatingSystemItems = [

export const platformItems = [
{
label: 'NVM',
label: 'nvm',
value: 'NVM' as PackageManager,
},
{
Expand Down
2 changes: 1 addition & 1 deletion util/getNodeDownloadSnippet.ts
Expand Up @@ -27,7 +27,7 @@ export const getNodeDownloadSnippet = (release: NodeRelease, os: UserOS) => {

if (os === 'MAC' || os === 'LINUX') {
snippets.NVM = dedent`
# installs NVM (Node Version Manager)
# installs nvm (Node Version Manager)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
# download and install Node.js
Expand Down

0 comments on commit 82f2999

Please sign in to comment.