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

View File

@@ -28,7 +28,7 @@ import (
func main() {
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)
}
}