16 lines
541 B
Bash
16 lines
541 B
Bash
#!/bin/bash
|
|
echo "================================ update serverlite ==============================="
|
|
cd /var/www
|
|
sudo chmod -R 0777 html
|
|
cd html
|
|
sudo rm -rf BiFace_Server_Lite
|
|
git clone http://gitea.beetai.com/dongpd/BiFace_Server_Lite.git
|
|
sudo chmod -R 0777 BiFace_Server_Lite
|
|
cd /root
|
|
sudo rm -rf BiFace_Server_Config_API
|
|
git clone http://gitea.beetai.com/dongpd/BiFace_Server_Config_API.git
|
|
cd BiFace_Server_Config_API
|
|
#npm install
|
|
echo "================================ update serverlite done!!! ==============================="
|
|
reboot
|