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
105 recipes_path = os.path.join(repo_root,
106 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)
175 return os.path.join(repo_root, recipes_path)
180 engine_path = urlparse.urlparse(url).path
187 engine_path = os.path.join(recipes_path, '.recipe_deps', 'recipe_engine')
208 index_lock = os.path.join(engine_path, '.git', 'index.lock')
227 return 'Required binary is not found on PATH: %s' % required_binary
237 repo_root = os.path.dirname(
238 os.path.dirname(os.path.dirname(recipes_cfg_path)))
243 cwd=os.path.abspath(os.path.dirname(__file__))).strip())
244 repo_root = os.path.abspath(repo_root).decode()
245 recipes_cfg_path = os.path.join(repo_root, 'infra', 'config', 'recipes.cfg')
251 os.path.join(engine_path, 'recipe_engine', 'main.py')] + args)