Files
weave-scope/prog/tools.go
Bryan Boreham c2578b6fb7 Move 'esc' tool out of image into vendor'd source
Smaller that way, and more consistent

(Note we run it with GC enabled; it crashes in CI otherwise)
2021-04-04 13:45:05 +01:00

11 lines
233 B
Go

// Ensure go mod fetches files needed to build the Docker container;
// the build constraint ensures this file is ignored
// +build tools
package report
import (
_ "github.com/peterbourgon/runsvinit"
_ "github.com/mjibson/esc"
)