Files
coder/agent/agentexec/cli_other.go
2024-11-25 17:22:12 +02:00

11 lines
168 B
Go

//go:build !linux
// +build !linux
package agentexec
import "golang.org/x/xerrors"
func CLI() error {
return xerrors.New("agent-exec is only supported on Linux")
}