[FIX] Scanopy: remove daemon build (#11444)

* [FIX] Scanopy: remove daemon build

- users are now to just use the UI

* update JSON
This commit is contained in:
Chris
2026-02-02 07:59:16 -05:00
committed by GitHub
parent a9121c9572
commit dd240c4b3c
3 changed files with 19 additions and 28 deletions

View File

@@ -67,15 +67,11 @@ function update_script() {
mv ./target/release/server /usr/bin/scanopy-server
msg_ok "Built scanopy-server"
msg_info "Building scanopy-daemon"
$STD cargo build --release --bin daemon
cp ./target/release/daemon /usr/bin/scanopy-daemon
msg_ok "Built scanopy-daemon"
msg_info "Starting services"
systemctl start scanopy-server
[[ -f /etc/systemd/system/scanopy-daemon.service ]] && systemctl start scanopy-daemon
msg_ok "Updated successfully!"
msg_warn "Update your integrated daemon via the UI"
fi
exit
}