Skip to content

Commit 82f2999

Browse files
authored
fix: change NVM to nvm (nodejs#6722)
* 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 <[email protected]> * fix: getNodeDownloadSnippet nvm comment --------- Signed-off-by: Steven <[email protected]>
1 parent 6d03b62 commit 82f2999

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

util/downloadUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const operatingSystemItems = [
3131

3232
export const platformItems = [
3333
{
34-
label: 'NVM',
34+
label: 'nvm',
3535
value: 'NVM' as PackageManager,
3636
},
3737
{

util/getNodeDownloadSnippet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const getNodeDownloadSnippet = (release: NodeRelease, os: UserOS) => {
2727

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

0 commit comments

Comments
 (0)