2017-06-13 08:09:14 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-06-22 20:15:46 +00:00
|
|
|
"github.com/moby/buildkit/cmd/buildctl/debug"
|
2017-06-13 08:09:14 +00:00
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
var debugCommand = cli.Command{
|
|
|
|
Name: "debug",
|
|
|
|
Usage: "debug utilities",
|
|
|
|
Subcommands: []cli.Command{
|
2017-07-05 03:38:48 +00:00
|
|
|
debug.DumpLLBCommand,
|
|
|
|
debug.DumpMetadataCommand,
|
2017-12-19 09:34:34 +00:00
|
|
|
debug.WorkersCommand,
|
2017-06-13 08:09:14 +00:00
|
|
|
},
|
|
|
|
}
|