Updating the update script

This commit is contained in:
Félix Aime 2021-06-10 20:17:24 +02:00
parent 926daf3e34
commit 772ff95108

View File

@ -40,6 +40,10 @@ elif [ $PWD = "/tmp/tinycheck" ]; then
cd /usr/share/tinycheck/app/frontend/ && npm install && npm audit fix && npm run build
cd /usr/share/tinycheck/app/backend/ && npm install && npm audit fix && npm run build
echo "[+] Updating the database scheme..."
cd /usr/share/tinycheck/
sqlite3 tinycheck.sqlite3 < assets/scheme.sql 2>/dev/null
echo "[+] Updating current configuration with new values."
if ! grep -q reboot_option /usr/share/tinycheck/config.yaml; then
sed -i 's/frontend:/frontend:\n reboot_option: true/g' /usr/share/tinycheck/config.yaml
@ -74,6 +78,9 @@ elif [ $PWD = "/tmp/tinycheck" ]; then
service tinycheck-frontend restart
service tinycheck-watchers restart
echo "[+] Deleting assets folder"
rm -rf /usr/share/tinycheck/assets/
echo "[+] Updating the TinyCheck version"
cd /tmp/tinycheck && git tag | tail -n 1 | xargs echo -n > /usr/share/tinycheck/VERSION