6 lines
187 B
Batchfile
6 lines
187 B
Batchfile
|
:: Created by npm, please don't edit manually.
|
||
|
@IF EXIST "%~dp0\node.exe" (
|
||
|
"%~dp0\node.exe" "%~dp0\..\express\bin\express" %*
|
||
|
) ELSE (
|
||
|
node "%~dp0\..\express\bin\express" %*
|
||
|
)
|