mirror of
https://github.com/moby/buildkit.git
synced 2026-06-30 19:57:39 +00:00
appdefaults_unix.go, constants_unix.go: /run is a thing only for Linux. Other Unixes use /var/run. diffapply_linux.go and source_linux.go: These files use Linux-only API. Signed-off-by: Marat Radchenko <marat@slonopotamus.org>
9 lines
173 B
Go
9 lines
173 B
Go
//go:build unix && !linux
|
|
|
|
package appdefaults
|
|
|
|
const (
|
|
Address = "unix:///var/run/buildkit/buildkitd.sock"
|
|
traceSocketPath = "/var/run/buildkit/otel-grpc.sock"
|
|
)
|