Merge pull request #2184 from kunalkushwaha/oci-error
better image config parse error.
This commit is contained in:
commit
2b6b99b4a1
@ -97,7 +97,7 @@ func loadSpec(path string, s *specs.Spec) error {
|
|||||||
return errors.New("cannot load spec config file")
|
return errors.New("cannot load spec config file")
|
||||||
}
|
}
|
||||||
if err := json.Unmarshal(raw, s); err != nil {
|
if err := json.Unmarshal(raw, s); err != nil {
|
||||||
return errors.New("decoding spec config file failed")
|
return errors.Errorf("decoding spec config file failed, current supported OCI runtime-spec : v%s", specs.Version)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user