Merge pull request #2961 from jterry75/fix_typo_path
Fix bug in shim path lookup
This commit is contained in:
commit
118d321cca
@ -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)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user