Files
kato 1bba2c6b51 feat(update): add update deployment via web UI
- Deploy exe to alternate port 5033
- Current instance keeps running
- Add parallel mode and addr flag
- Add update panel to web UI
- Update OpenAPI spec and CLI
2026-09-01 20:17:06 +03:00

10 lines
168 B
Go

//go:build !windows
package update
import "errors"
func deployLaunch(savedPath, nextAddr string) error {
return errors.New("deploy is only supported on windows")
}