GCanvas/node/script/install.sh
2020-02-06 20:27:23 +08:00

13 lines
391 B
Bash
Executable File

isLocal=false
if [ -n "$1" ] ;then
if [ "$1" = "true" ]; then
isLocal=true
fi
fi
if [ "$isLocal" = "true" ];then
echo "local build"
else
echo "remote build"
git clone https://github.com/alibaba/GCanvas.git && cp -R ./GCanvas/core ./core/ && npm run compile && cp ./third_party/font/wqy-microhei.ttc ../../ && cp ./third_party/font/.fontcache ../../
fi