Lines Matching refs:check_call
167 def check_call(cmd, **kwargs): function
173 subprocess.check_call(cmd, **kwargs)
181 check_call(cmd, cwd=local_dir)
186 check_call(["repo", "start", branch_name] + git_dirs)
190 check_call(["git", "reset", "--hard", "@{upstream}"], cwd=git_dir)
197 check_call(["repo", "upload", "-t", "--br=" + branch_name, git_root])
203 check_call(["git", "rm", "-qrf", "--ignore-unmatch"] + subpaths, cwd=git_root)
206 check_call(["rm", "-rf"] + subpaths, cwd=git_root)
211 check_call(["git", "add"] + add_paths, cwd=git_root)
233 check_call("git diff-index --quiet --cached HEAD -- || "
248 check_call(["cp", os.path.join(local_dist, entry.source_path), install_dir])
252 check_call(["mkdir", install_file], cwd=install_dir)
254 check_call(["unzip", "-DD", source_file, "-d", install_file],
256 check_call(["rm", source_file], cwd=install_dir)
259 check_call(["mv", source_file, install_file], cwd=install_dir)