Signed-off-by: Tibor Vass <tibor@docker.com> Upstream-commit: 3a1da5c534bb71149036eb67792a4eb4f6474144 Component: engine
12 lines
209 B
Go
12 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")
|
|
}
|