Skip to content

Commit

Permalink
AU: 2 updated - nodejs nodejs.install
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Sep 8, 2023
1 parent 5ca5e71 commit d44b97d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions automatic/nodejs.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy.
The installer has been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://nodejs.org/dist/v20.6.0/node-v20.6.0-x86.msi>
64-Bit: <https://nodejs.org/dist/v20.6.0/node-v20.6.0-x64.msi>
32-Bit: <https://nodejs.org/dist/v20.6.1/node-v20.6.1-x86.msi>
64-Bit: <https://nodejs.org/dist/v20.6.1/node-v20.6.1-x64.msi>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: B586B72EB2824810FAE0961538A40FA063FDA4C099273957F6CF53447BCB101C
checksum64: 00976CB508275D85204505C953C9F0736FEEEED8ACE0A90077671EC9E2154FCE
checksum32: CB83586AF83182187E760B7E01AA7C7B2BACB521D60CEEFED3AC6FC62C222449
checksum64: 5C2616DA46728DD1326645C7DB114E78AD87138A258C0724A035269258C23509

File 'LICENSE.txt' is obtained from <https://github.com/nodejs/node/blob/03023fa7ae060c082a014f792d5d1f481a599460/LICENSE>
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"17": "17.9.1",
"18": "18.17.0",
"19": "19.9.0",
"20": "20.6.0"
"20": "20.6.1"
}
2 changes: 1 addition & 1 deletion automatic/nodejs.install/nodejs.install.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs.install</id>
<title>Node JS (Install)</title>
<version>20.6.0</version>
<version>20.6.1</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/nodejs.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition

$filePath32 = "$toolsPath\node-v20.6.0-x86.msi"
$filePath64 = "$toolsPath\node-v20.6.0-x64.msi"
$filePath32 = "$toolsPath\node-v20.6.1-x86.msi"
$filePath64 = "$toolsPath\node-v20.6.1-x64.msi"
$installFile = if ((Get-OSArchitectureWidth 64) -and $env:chocolateyForceX86 -ne 'true') {
Write-Host "Installing 64 bit version"; $filePath64 }
else { Write-Host "Installing 32 bit version"; $filePath32 }
Expand Down
2 changes: 1 addition & 1 deletion automatic/nodejs/nodejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"17": "17.9.1",
"18": "18.17.0",
"19": "19.9.0",
"20": "20.6.0"
"20": "20.6.1"
}
4 changes: 2 additions & 2 deletions automatic/nodejs/nodejs.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>nodejs</id>
<title>Node JS</title>
<version>20.6.0</version>
<version>20.6.1</version>
<authors>Node.js Foundation</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>Node JS - Evented I/O for v8 JavaScript.</summary>
Expand All @@ -30,7 +30,7 @@ This package runs the official Node JS installer, resulting in Node.exe and NPM
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@ba5adf020e09cd0e51107206ef3ec390035a6e90/icons/nodejs.png</iconUrl>
<dependencies>
<dependency id="nodejs.install" version="[20.6.0]" />
<dependency id="nodejs.install" version="[20.6.1]" />
</dependencies>
</metadata>
<files>
Expand Down

0 comments on commit d44b97d

Please sign in to comment.