diff --git a/runtime/v2/shim/util.go b/runtime/v2/shim/util.go index 75878fb3f..a4e300f86 100644 --- a/runtime/v2/shim/util.go +++ b/runtime/v2/shim/util.go @@ -71,9 +71,9 @@ func Command(ctx context.Context, runtime, containerdAddress, path string, cmdAr // execute the shim found there. testPath := filepath.Join(filepath.Dir(self), name) if _, serr := os.Stat(testPath); serr == nil { - path = testPath + cmdPath = testPath } - if path == "" { + if cmdPath == "" { return nil, errors.Wrapf(os.ErrNotExist, "runtime %q binary not installed %q", runtime, name) } }