diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-04-23 18:38:28 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-23 18:38:28 +0000 |
commit | c38bcae214be4ce3561785bb35ec66a70d15166f (patch) | |
tree | 19299e8299589e44a24859194feb4d45885dbc9d /runsc | |
parent | bed60371fb60071c19bf7c7b8945087da43e0dfb (diff) | |
parent | 1481499fe27157ad2716c00682f6ad819115a6c7 (diff) |
Merge release-20200323.0-220-g1481499 (automated)
Diffstat (limited to 'runsc')
-rw-r--r-- | runsc/container/container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/container/container.go b/runsc/container/container.go index 7233659b1..117ea7d7b 100644 --- a/runsc/container/container.go +++ b/runsc/container/container.go @@ -274,7 +274,7 @@ func New(conf *boot.Config, args Args) (*Container, error) { } if err := os.MkdirAll(conf.RootDir, 0711); err != nil { - return nil, fmt.Errorf("creating container root directory: %v", err) + return nil, fmt.Errorf("creating container root directory %q: %v", conf.RootDir, err) } c := &Container{ |