Merge pull request #2522 from jterry75/runc_typo

Fix a typo in runc-v1 shim
This commit is contained in:
Derek McGowan 2018-08-02 12:50:53 -07:00 committed by GitHub
commit 9ca687be63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)
} }
} }