Files
oops-game-kit/update-oops-plugin-framework-tools.sh
2024-02-10 20:47:36 +08:00

12 lines
256 B
Bash

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