X Tutup
Skip to content

Commit ebc0ddb

Browse files
authored
Merge pull request containerd#4761 from zhsj/fix-cri-proto
Fix package name in cri runtimeoptions protobuf
2 parents 625da6b + fe767f9 commit ebc0ddb

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

pkg/cri/runtimeoptions/v1/api.pb.go

Lines changed: 18 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/cri/runtimeoptions/v1/api.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// To regenerate api.pb.go run `make proto`
1+
// To regenerate api.pb.go run `make protos`
22
syntax = "proto3";
33

44
package cri.runtimeoptions.v1;
@@ -14,7 +14,7 @@ option (gogoproto.unmarshaler_all) = true;
1414
option (gogoproto.goproto_unrecognized_all) = false;
1515

1616

17-
option go_package = "github.com/containerd/containerd/pkg/api/runtimeoptions/v1;cri_runtimeoptions_v1";
17+
option go_package = "github.com/containerd/containerd/pkg/cri/runtimeoptions/v1;cri_runtimeoptions_v1";
1818

1919
message Options {
2020
// TypeUrl specifies the type of the content inside the config file.

0 commit comments

Comments
 (0)
X Tutup