Files
oops-game-kit/update-oops-plugin-framework.sh
2024-10-19 16:06:45 +08:00

13 lines
250 B
Bash

if [ ! -d "extensions" ]; then
mkdir extensions
fi
cd extensions
if [ ! -d "oops-plugin-framework" ]; then
git clone -b master https://gitee.com/dgflash/oops-plugin-framework.git
else
cd oops-plugin-framework
git pull
fi
npm install