mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3a1da5c534
Signed-off-by: Tibor Vass <tibor@docker.com>
11 lines
209 B
Go
11 lines
209 B
Go
package buildkit
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/moby/buildkit/executor"
|
|
)
|
|
|
|
func newExecutor(_ string) (executor.Executor, error) {
|
|
return nil, errors.New("buildkit executor not implemented for windows")
|
|
}
|