您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
16 行
385 B
16 行
385 B
#!/bin/sh
|
|
|
|
BUILD_SCRIPT="./.build_script/node_modules/upm-template-utils/index.js"
|
|
|
|
if [ ! -f $BUILD_SCRIPT ]; then
|
|
mkdir -p "./.build_script/node_modules"
|
|
cd .build_script
|
|
npm install upm-template-utils --registry https://api.bintray.com/npm/unity/unity-staging --no-save --loglevel error >/dev/null
|
|
cd ..
|
|
fi
|
|
|
|
if [ -z $1 ]; then
|
|
node $BUILD_SCRIPT
|
|
else
|
|
node $BUILD_SCRIPT $*
|
|
fi
|