tool cache

This commit is contained in:
Opportunity
2019-09-30 20:33:38 +08:00
Unverified
parent 5259c2cc9d
commit d610c9a2b6
219 changed files with 10598 additions and 7819 deletions
Generated Vendored
+17
View File
@@ -0,0 +1,17 @@
@ECHO off
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
"%_prog%" "%dp0%\..\uuid\bin\uuid" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b