Files
voice-cat/deploy/linux/install.sh
T

8 lines
267 B
Bash
Raw Normal View History

2026-09-16 17:08:17 +02:00
#!/bin/sh
set -eu
install -d -m 0755 /usr/local/lib/voicecat
install -m 0755 VoiceCat.Server /usr/local/lib/voicecat/VoiceCat.Server
install -m 0644 voicecat.service /etc/systemd/system/voicecat.service
systemctl daemon-reload
systemctl enable --now voicecat.service