Files
oops-framework/update-oops-plugin-hot-update.sh
2022-08-15 17:53:45 +08:00

12 lines
241 B
Bash

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