diff --git a/pkg/skaffold/build/ko/build.go b/pkg/skaffold/build/ko/build.go index efa5c4c6655..a7454dbc892 100644 --- a/pkg/skaffold/build/ko/build.go +++ b/pkg/skaffold/build/ko/build.go @@ -26,6 +26,9 @@ import ( "github.com/google/ko/pkg/build" "github.com/google/ko/pkg/publish" + // TODO(halvards)[08/11/2021]: Replace the latestV1 import path with the + // real schema import path once the contents of ./schema has been added to + // the real schema in pkg/skaffold/schema/latest/v1. // latestV1 "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/latest/v1" latestV1 "github.com/GoogleContainerTools/skaffold/pkg/skaffold/build/ko/schema" ) diff --git a/pkg/skaffold/build/ko/build_test.go b/pkg/skaffold/build/ko/build_test.go index 2c9b3eab29c..bdac5c5bcb7 100644 --- a/pkg/skaffold/build/ko/build_test.go +++ b/pkg/skaffold/build/ko/build_test.go @@ -27,6 +27,9 @@ import ( "github.com/google/ko/pkg/build" "github.com/google/ko/pkg/publish" + // TODO(halvards)[08/11/2021]: Replace the latestV1 import path with the + // real schema import path once the contents of ./schema has been added to + // the real schema in pkg/skaffold/schema/latest/v1. // latestV1 "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/latest/v1" latestV1 "github.com/GoogleContainerTools/skaffold/pkg/skaffold/build/ko/schema" "github.com/GoogleContainerTools/skaffold/pkg/skaffold/docker"