Files
weave-scope/prog/tools.go
Bryan Boreham bba4879bf3 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)
2020-12-30 10:53:34 +00: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"
)