From 307aec5d526966888ef923bd531dfeb91a7f2b08 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 15 May 2021 13:16:25 -0700 Subject: check for error When reading the configuration for the container, if there's an error we return the error to the caller. --- users/fcuny/exp/containerd-to-vm/cmd/c2vm/main.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'users/fcuny/exp/containerd-to-vm') diff --git a/users/fcuny/exp/containerd-to-vm/cmd/c2vm/main.go b/users/fcuny/exp/containerd-to-vm/cmd/c2vm/main.go index 544293e..3251f96 100644 --- a/users/fcuny/exp/containerd-to-vm/cmd/c2vm/main.go +++ b/users/fcuny/exp/containerd-to-vm/cmd/c2vm/main.go @@ -187,6 +187,9 @@ func initScript(ctx context.Context, client *containerd.Client, image containerd } configBlob, err := content.ReadBlob(ctx, client.ContentStore(), config) + if err != nil { + return err + } var imageSpec ocispec.Image json.Unmarshal(configBlob, &imageSpec) initCmd := strings.Join(imageSpec.Config.Cmd, " ") -- cgit 1.4.1