From 111e69668bfb7cc698081926e9d5b2dd597018bb Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Wed, 13 Jan 2016 17:18:39 -0500 Subject: [PATCH] config: corresponding change for required field Signed-off-by: Vincent Batts --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index cff5336b5..1a0678b50 100644 --- a/config.go +++ b/config.go @@ -30,7 +30,7 @@ type Process struct { Env []string `json:"env,omitempty"` // Cwd is the current working directory for the process and must be // relative to the container's root. - Cwd string `json:"cwd,omitempty"` + Cwd string `json:"cwd"` } // Root contains information about the container's root filesystem on the host.