mirror of
https://gitee.com/dgflash/oops-game-kit.git
synced 2026-05-07 18:35:42 +08:00
13 lines
250 B
Bash
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 |