mirror of
https://gitee.com/dgflash/oops-framework.git
synced 2026-05-08 16:25:37 +08:00
12 lines
238 B
Bash
12 lines
238 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
|