1
0
mirror of https://github.com/ko-build/ko.git synced 2025-07-03 23:30:35 +02:00

Remove strictness checks from build, into resolve

Strictness has nothing to do with building, and is independent of how
images are built (fixed builder, some future exotic builder type, etc.)
This commit is contained in:
Jason Hall
2019-08-15 14:22:45 -04:00
parent 4342ceff74
commit 3315663a21
11 changed files with 42 additions and 75 deletions

View File

@ -58,7 +58,7 @@ func addResolve(topLevel *cobra.Command) {
ko resolve --local -f config/`,
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
builder, err := makeBuilder(do, sto)
builder, err := makeBuilder(do)
if err != nil {
log.Fatalf("error creating builder: %v", err)
}