wishthis/node_modules/.bin/gulp.cmd

18 lines
259 B
Batchfile
Raw Normal View History

2022-01-21 08:28:41 +00:00
@ECHO off
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
2022-02-23 16:41:13 +00:00
"%_prog%" "%dp0%\..\gulp\bin\gulp.js" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b