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

17 lines
247 B
Batchfile

md extensions
cd extensions
IF EXIST oops-plugin-framework (
goto update
) ELSE (
goto clone
)
:clone
git clone -b master https://gitee.com/dgflash/oops-plugin-framework.git
:update
cd oops-plugin-framework
git pull
npm install