diff options
Diffstat (limited to 'tools/msvs/nodevars.bat')
-rw-r--r-- | tools/msvs/nodevars.bat | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/msvs/nodevars.bat b/tools/msvs/nodevars.bat index 2b7915662e..22d2ec48da 100644 --- a/tools/msvs/nodevars.bat +++ b/tools/msvs/nodevars.bat @@ -1,24 +1,24 @@ @echo off -rem Ensure this io.js and npm are first in the PATH +rem Ensure this Node.js and npm are first in the PATH set PATH=%APPDATA%\npm;%~dp0;%PATH% setlocal enabledelayedexpansion pushd "%~dp0" -rem Figure out the io.js version. -set print_version=.\iojs.exe -p -e "process.versions.node + ' (' + process.arch + ')'" +rem Figure out the Node.js version. +set print_version=.\node.exe -p -e "process.versions.node + ' (' + process.arch + ')'" for /F "usebackq delims=" %%v in (`%print_version%`) do set version=%%v rem Print message. if exist npm.cmd ( - echo Your environment has been set up for using io.js !version! and npm. + echo Your environment has been set up for using Node.js !version! and npm. ) else ( - echo Your environment has been set up for using io.js !version!. + echo Your environment has been set up for using Node.js !version!. ) popd endlocal -rem If we're in the io.js directory, change to the user's home dir. +rem If we're in the Node.js directory, change to the user's home dir. if "%CD%\"=="%~dp0" cd /d "%HOMEDRIVE%%HOMEPATH%" |