2017-06-08 01:04:52 +00:00
|
|
|
// +build !standalone,!containerd
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"github.com/tonistiigi/buildkit_poc/control"
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
2017-06-08 19:00:31 +00:00
|
|
|
func appendFlags(f []cli.Flag) []cli.Flag {
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2017-06-08 01:04:52 +00:00
|
|
|
func newController(c *cli.Context) (*control.Controller, error) {
|
|
|
|
return nil, errors.New("invalid build")
|
|
|
|
}
|