Searched refs:git_root (Results 1 – 1 of 1) sorted by relevance
/packages/modules/ArtPrebuilt/ |
D | update-art-module-prebuilts.py | 120 def upload_branch(git_root, git_branch_name): argument 124 check_call(["repo", "upload", "-t", "--br=" + git_branch_name, git_root]) 127 def remove_files(git_root, subpaths, stage_removals): argument 130 check_call(["git", "rm", "-qrf", "--ignore-unmatch"] + subpaths, cwd=git_root) 133 check_call(["rm", "-rf"] + subpaths, cwd=git_root) 136 def commit(git_root, prebuilt_descr, branch, target, build, add_paths, bug_number): argument 138 check_call(["git", "add"] + add_paths, cwd=git_root) 161 "git commit -F " + msg_path, shell=True, cwd=git_root) 278 for git_root, subpaths in install_paths_per_root.items(): 279 remove_files(git_root, subpaths, not args.skip_cls) [all …]
|