您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
19 行
504 B
19 行
504 B
@ECHO OFF
|
|
|
|
REM Wrapper script to make running the node.js CI script a little quicker.
|
|
REM Arguments are same as for index.js
|
|
|
|
SET BUILD_SCRIPT="./.build_script/node_modules/upm-template-utils/index.js"
|
|
|
|
IF NOT EXIST %BUILD_SCRIPT% (
|
|
mkdir "./.build_script/node_modules" >NUL
|
|
CD .build_script
|
|
CALL npm install upm-template-utils --registry https://api.bintray.com/npm/unity/unity-staging --no-save --loglevel error >NUL
|
|
CD ..
|
|
)
|
|
|
|
IF "%1" == "" (
|
|
node %BUILD_SCRIPT%
|
|
) ELSE (
|
|
node %BUILD_SCRIPT% %*
|
|
)
|