2021-05-03 16:13:05 +00:00
|
|
|
#!/usr/bin/with-contenv bash
|
|
|
|
|
|
|
|
cd /pagermaid/workdir
|
|
|
|
git remote set-url origin https://github.com/Xtao-Labs/PagerMaid-Modify.git
|
|
|
|
git pull
|
|
|
|
|
2021-05-08 13:52:36 +00:00
|
|
|
pip install -r requirements.txt
|
2021-05-28 12:31:00 +00:00
|
|
|
if [ -s requirements2.txt ]; then
|
|
|
|
pip install -r requirements2.txt
|
|
|
|
fi
|
2021-05-08 13:52:36 +00:00
|
|
|
exit 0
|