mirror of
https://gitee.com/dgflash/oops-framework.git
synced 2026-05-09 08:45:37 +08:00
12 lines
229 B
Bash
12 lines
229 B
Bash
if [ ! -d "extensions" ]; then
|
|
mkdir extensions
|
|
fi
|
|
cd extensions
|
|
|
|
if [ ! -d "oops-plugin-bundle" ]; then
|
|
git clone -b master https://gitee.com/dgflash/oops-plugin-bundle.git
|
|
else
|
|
cd oops-plugin-bundle
|
|
git pull
|
|
fi
|