Fix a typo in runc-v1 shim

Signed-off-by: Justin Terry (VM) <juterry@microsoft.com>
This commit is contained in:
Justin Terry (VM) 2018-08-02 11:16:31 -07:00
parent b8f4c7a9bd
commit 9ff702b9a1

View File

@ -28,7 +28,7 @@ import (
func main() { func main() {
if err := shim.Run(runc.New); err != nil { if err := shim.Run(runc.New); err != nil {
fmt.Fprintf(os.Stderr, "containerd-shim-run-v1: %s\n", err) fmt.Fprintf(os.Stderr, "containerd-shim-runc-v1: %s\n", err)
os.Exit(1) os.Exit(1)
} }
} }