in main.go [84:90]
func verifyRuntimePath(userDefinedRuncPath string) (string, error) {
info, err := os.Stat(userDefinedRuncPath)
if err == nil && !info.Mode().IsDir() && info.Mode().IsRegular() {
return userDefinedRuncPath, nil
}
return "", errUnableToFindRuntime
}