mirror of
https://github.com/MatomoCamp/live-platform.git
synced 2024-09-09 04:33:44 +02:00
13 lines
160 B
Bash
Executable file
13 lines
160 B
Bash
Executable file
#!/bin/bash
|
|
set -x
|
|
set -e
|
|
|
|
python="/srv/live/venv/bin/python"
|
|
|
|
runpython="sudo -u live $python"
|
|
|
|
git pull
|
|
|
|
$python utils.py
|
|
|
|
sudo systemctl reload live.service
|