From 967a4e0e5ac261f9fdda99e7dd5f6fea32bd35ba Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Sat, 27 May 2017 14:54:38 +0000 Subject: [PATCH] ctr shim exec: fix cli flag Signed-off-by: Akihiro Suda --- cmd/ctr/shim.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/ctr/shim.go b/cmd/ctr/shim.go index 2582882d5..1b4647ad1 100644 --- a/cmd/ctr/shim.go +++ b/cmd/ctr/shim.go @@ -207,6 +207,10 @@ var shimExecCommand = cli.Command{ Name: "cwd", Usage: "current working directory", }, + cli.StringFlag{ + Name: "spec", + Usage: "runtime spec", + }, ), Action: func(context *cli.Context) error { service, err := getShimService()