From 8c1c98a197d334e49bfc77fc6b1283ea22d31474 Mon Sep 17 00:00:00 2001 From: alemi Date: Mon, 27 May 2024 19:40:05 +0200 Subject: [PATCH] ci: build with all features --- .tci | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.tci b/.tci index 69920e4..eab1aed 100755 --- a/.tci +++ b/.tci @@ -1,9 +1,9 @@ #!/bin/bash -cargo build --release +cargo build --release --all-features echo "stopping service" systemctl --user stop mumble-stats echo "replacing binary" -cat ./target/release/mumble-stats-api > /opt/bin/mumble-stats-api +mv ./target/release/mumble-stats-api /opt/bin/mumble-stats-api echo "restarting service" systemctl --user start mumble-stats