You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
502 B

@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=%~dp0\D:\edge\nodejs\random_select_system\node_modules\.store\xlsx@0.18.5\node_modules"
) ELSE (
@SET "NODE_PATH=%NODE_PATH%;%~dp0\D:\edge\nodejs\random_select_system\node_modules\.store\xlsx@0.18.5\node_modules"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\.store\xlsx@0.18.5\node_modules\xlsx\bin\xlsx.njs" %*
) ELSE (
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\.store\xlsx@0.18.5\node_modules\xlsx\bin\xlsx.njs" %*
)