mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-21 17:38:10 +00:00
- build.sh supports linux/amd64, linux/arm64, darwin/amd64, darwin/arm64, windows/amd64, and 'all' for matrix build - Components: homed (CGO, Linux/macOS-only), waiter (all platforms), gui - Platform matrix documented in script header - waiter: extract setRawMode into rawmode_linux.go + rawmode_other.go for cross-platform support - Add cmd/gui/node_modules/ and dist/ to .gitignore - Fix .gitignore waiter pattern to not ignore cmd/waiter/ directory
10 lines
173 B
Go
10 lines
173 B
Go
//go:build !linux
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func setRawMode(fd int) (func(), error) {
|
|
return func() {}, fmt.Errorf("raw terminal mode not supported on this platform")
|
|
}
|