mirror of
https://github.com/TeamPGM/PagerMaid-Pyro.git
synced 2024-11-22 12:35:40 +00:00
12 lines
247 B
Plaintext
12 lines
247 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
cd /pagermaid/workdir
|
|
git remote set-url origin https://github.com/TeamPGM/PagerMaid-Pyro.git
|
|
git pull
|
|
|
|
pip install -r requirements.txt
|
|
if [ -s requirements2.txt ]; then
|
|
pip install -r requirements2.txt
|
|
fi
|
|
exit 0
|