From f0e909a1cd869bdbb6af714e688284864ae6c225 Mon Sep 17 00:00:00 2001 From: Chocolatey Date: Wed, 3 Jan 2018 12:12:41 +0000 Subject: [PATCH] AU: 1 updated - nodejs.install [skip ci] https://gist.github.com/a14b1e5bfaf70839b338eb1ab7f8226f/137a270c04da70a2f6d0d5bc35e88ccffcbb3702 --- automatic/nodejs.install/legal/VERIFICATION.txt | 8 ++++---- automatic/nodejs.install/nodejs.install.json | 2 +- automatic/nodejs.install/nodejs.install.nuspec | 2 +- automatic/nodejs.install/tools/chocolateyInstall.ps1 | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/automatic/nodejs.install/legal/VERIFICATION.txt b/automatic/nodejs.install/legal/VERIFICATION.txt index 9e1f335f326..d7d108ccbf3 100644 --- a/automatic/nodejs.install/legal/VERIFICATION.txt +++ b/automatic/nodejs.install/legal/VERIFICATION.txt @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy. The installer have been downloaded from GitHub and can be verified like this: 1. Download the following installers: - 32-Bit: - 64-Bit: + 32-Bit: + 64-Bit: 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: 0A34C4FC524703592CBB6C7FB88A5A199FE5D1DE5D052EB6CE32CCB020A56A63 - checksum64: 217FB0CE8B8FAF24B06DE1CB588B2C534555174B0438ACB8B80D0D654E1F051F + checksum32: F9442188C2F66D167A0AC610DEE6D16E226BA28CA93F9569E0276268EB8F85DC + checksum64: 547689DA69BACADFEE619D208702B73698D14297BD5FEF5D80656897989E91B6 File 'LICENSE.txt' is obtained from diff --git a/automatic/nodejs.install/nodejs.install.json b/automatic/nodejs.install/nodejs.install.json index 19995220dfa..e9c17e05f63 100644 --- a/automatic/nodejs.install/nodejs.install.json +++ b/automatic/nodejs.install/nodejs.install.json @@ -1,7 +1,7 @@ { "4.8": "4.8.7", "6.11": "6.11.5", - "8.9": "8.9.3", + "8.9": "8.9.4", "9.0": "9.0.0", "6.12": "6.12.3", "9.1": "9.1.0", diff --git a/automatic/nodejs.install/nodejs.install.nuspec b/automatic/nodejs.install/nodejs.install.nuspec index 1c826b044b6..d996bb5d692 100644 --- a/automatic/nodejs.install/nodejs.install.nuspec +++ b/automatic/nodejs.install/nodejs.install.nuspec @@ -4,7 +4,7 @@ nodejs.install Node JS (Install) - 6.12.3 + 8.9.4 Node.js Foundation chocolatey, Rob Reynolds Node JS - Evented I/O for v8 JavaScript. diff --git a/automatic/nodejs.install/tools/chocolateyInstall.ps1 b/automatic/nodejs.install/tools/chocolateyInstall.ps1 index 92263575530..8a533b45a37 100644 --- a/automatic/nodejs.install/tools/chocolateyInstall.ps1 +++ b/automatic/nodejs.install/tools/chocolateyInstall.ps1 @@ -2,8 +2,8 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition -$filePath32 = "$toolsPath\node-v6.12.3-x86.msi" -$filePath64 = "$toolsPath\node-v6.12.3-x64.msi" +$filePath32 = "$toolsPath\node-v8.9.4-x86.msi" +$filePath64 = "$toolsPath\node-v8.9.4-x64.msi" $installFile = if ((Get-ProcessorBits 64) -and $env:chocolateyForceX86 -ne 'true') { Write-Host "Installing 64 bit version"; $filePath64 } else { Write-Host "Installing 32 bit version"; $filePath32 }