Lines Matching refs:check_call
94 def check_call(cmd, **kwargs): function
100 subprocess.check_call(cmd, **kwargs)
108 check_call(cmd, cwd=local_dir)
113 check_call(["repo", "start", git_branch_name] + git_dirs)
117 check_call(["git", "reset", "--hard", "@{upstream}"], cwd=git_dir)
124 check_call(["repo", "upload", "-t", "--br=" + git_branch_name, git_root])
130 check_call(["git", "rm", "-qrf", "--ignore-unmatch"] + subpaths, cwd=git_root)
133 check_call(["rm", "-rf"] + subpaths, cwd=git_root)
138 check_call(["git", "add"] + add_paths, cwd=git_root)
160 check_call("git diff-index --quiet --cached HEAD -- || "
175 check_call(["cp", os.path.join(local_dist, entry.source_path), install_dir])
179 check_call(["mkdir", install_file], cwd=install_dir)
181 check_call(["unzip", "-DD", source_file, "-d", install_file],
183 check_call(["rm", source_file], cwd=install_dir)
186 check_call(["mv", source_file, install_file], cwd=install_dir)