ci: more verbose to better spot bugs

This commit is contained in:
əlemi 2024-02-22 05:14:07 +01:00
parent b531033865
commit 919adf8f39
Signed by: alemi
GPG key ID: A4895B84D311642C

3
.tci
View file

@ -1,6 +1,9 @@
#!/bin/bash #!/bin/bash
cargo build --release cargo build --release
echo "stopping service"
systemctl --user stop mumble-stats systemctl --user stop mumble-stats
echo "replacing binary"
cat ./target/release/mumble-stats-api > /opt/bin/mumble-stats-api cat ./target/release/mumble-stats-api > /opt/bin/mumble-stats-api
echo "restarting service"
systemctl --user start mumble-stats systemctl --user start mumble-stats