mirror of
https://gitee.com/dgflash/oops-game-kit.git
synced 2026-05-08 13:25:53 +08:00
12 lines
256 B
Bash
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
|