Skip to content

Commit 8bead0f

Browse files
committed
proto: Temporarily remove Process.User
To avoid: go run ./example.go go/config.pb.go:26:8: cannot find package "google/protobuf" in any of: /usr/lib/go/src/google/protobuf (from $GOROOT) /home/wking/.local/lib/go/src/google/protobuf (from $GOPATH) Makefile:31: recipe for target 'example' failed Until we get Any working. Signed-off-by: W. Trevor King <[email protected]>
1 parent 932c50d commit 8bead0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proto/config.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ syntax = "proto3";
22

33
package oci;
44

5-
import "google/protobuf/any.proto";
5+
//import "google/protobuf/any.proto";
66

77
// Spec is the base configuration for the container. It specifies platform
88
// independent configuration.
@@ -53,7 +53,7 @@ message Process {
5353
// Terminal creates an interactive terminal for the container.
5454
bool terminal = 1;
5555
// User specifies user information for the process.
56-
google.protobuf.Any user = 2;
56+
//google.protobuf.Any user = 2;
5757
// Args specifies the binary and arguments for the application to
5858
// execute.
5959
repeated string args = 3;

0 commit comments

Comments
 (0)