mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2025-02-25 18:55:26 -06:00
8 lines
319 B
Bash
Executable File
8 lines
319 B
Bash
Executable File
#!/bin/sh
|
|
cargo build --release
|
|
install -Dm755 target/release/daemon /usr/local/bin/lact-daemon
|
|
install -Dm755 target/release/cli /usr/local/bin/lact-cli
|
|
install -Dm755 target/release/gui /usr/local/bin/lact-gui
|
|
install -Dm644 lact.service /etc/systemd/system/lact.service
|
|
systemctl daemon-reload
|
|
systemctl restart lact |