Lines Matching full:path
54 def __init__(self, msg, path):
55 full_message = 'malformed recipes.cfg: %s: %r' % (msg, path)
63 repo_root (str) - native path to the root of the repo we're trying to run
65 recipes_cfg_path (str) - native path to the recipes.cfg file to process.
70 recipes_path (str) - native path to where the recipes live inside of the
108 recipes_path = os.path.join(repo_root,
109 recipes_path.replace('/', os.path.sep))
123 def _is_executable(path):
124 return os.path.isfile(path) and os.access(path, os.X_OK)
129 for path in os.environ['PATH'].split(os.pathsep):
130 full_path = os.path.join(path, basename)
156 * an override for the recipe engine in the form of `-O recipe_engine=/path`
163 p.add_argument('--package', type=os.path.abspath)
174 Returns the path to the recipe engine repo and the py3_only boolean.
179 return os.path.join(repo_root, recipes_path), py3_only
184 engine_path = urlparse.urlparse(url).path
191 engine_path = os.path.join(recipes_path, '.recipe_deps', 'recipe_engine')
211 index_lock = os.path.join(engine_path, '.git', 'index.lock')
230 return 'Required binary is not found on PATH: %s' % required_binary
240 repo_root = os.path.dirname(
241 os.path.dirname(os.path.dirname(recipes_cfg_path)))
246 cwd=os.path.abspath(os.path.dirname(__file__))).strip())
247 repo_root = os.path.abspath(repo_root).decode()
248 recipes_cfg_path = os.path.join(repo_root, 'infra', 'config', 'recipes.cfg')
255 return 'Required binary is not found on PATH: %s' % vpython
258 vpython, '-u', os.path.join(engine_path, 'recipe_engine', 'main.py'),