Browse Source

Upgrade node.js on Windows to v0.10.9

Pēteris Ņikiforovs 12 years ago
parent
commit
9252c56741
1 changed files with 2 additions and 2 deletions
  1. 2 2
      installer.ps1

+ 2 - 2
installer.ps1

@@ -54,8 +54,8 @@ Start-Process "msiexec" "/i $webdeploy_local /passive" -Wait
 # node.js
 #
 Write-Host "Installing node.js...`n"
-$node_installer_file = "node-v0.10.7-x64.msi"
-$node_installer_url = "http://nodejs.org/dist/v0.10.7/x64/$node_installer_file"
+$node_installer_file = "node-v0.10.9-x64.msi"
+$node_installer_url = "http://nodejs.org/dist/v0.10.9/x64/$node_installer_file"
 $node_installer_local = "$workdir\$node_installer_file"
 (New-Object System.Net.WebClient).DownloadFile($node_installer_url, $node_installer_local)