Skip to content

Commit

Permalink
Use Install-Product node instead of Update-NodeJsInstallation
Browse files Browse the repository at this point in the history
http://help.appveyor.com/discussions/suggestions/810-nodejs-400-is-out
`Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)`
command doesn't work with Node 4 yet.

nodejs/nan#444 (comment)
  • Loading branch information
sanemat committed Sep 9, 2015
1 parent 924b094 commit 8c80c30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ environment:

# get the latest stable version of Node 0.STABLE.latest
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- ps: Install-Product node $env:nodejs_version
- npm install

build: off
Expand Down

0 comments on commit 8c80c30

Please sign in to comment.