setup-node/node_modules/.bin/which.cmd

7 lines
172 B
Batchfile
Raw Normal View History

2019-08-07 05:29:44 +07:00
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\which\bin\which" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\which\bin\which" %*
)