Lines Matching refs:cwd
269 cwd = self._options.chromium
271 if not self.GitIsWorkdirClean(cwd=cwd): # pragma: no cover
274 if not os.path.exists(os.path.join(cwd, "DEPS")): # pragma: no cover
282 cwd = self._options.chromium
283 self.GitCheckout("master", cwd=cwd)
284 self.GitPull(cwd=cwd)
285 self.GitCreateBranch(self.Config("BRANCHNAME"), cwd=cwd)
293 revision, cwd=os.path.join(step._options.chromium, "v8"))
300 cwd = self._options.chromium
308 self.GitFetchOrigin(cwd=os.path.join(cwd, "v8"))
315 format="%H", grep="V8", cwd=cwd).splitlines():
316 if "DEPS" not in self.GitChangedFiles(git_hash, cwd=cwd):
318 if not self.GitCheckoutFileSafe("DEPS", git_hash, cwd=cwd):
320 deps = FileToText(os.path.join(cwd, "DEPS"))
323 cr_rev = self.GetCommitPositionNumber(git_hash, cwd=cwd)
339 self.GitCheckoutFileSafe("DEPS", "HEAD", cwd=cwd)
353 cwd = self._options.chromium
363 self.GitRemotes(cwd=cwd))
376 cwd=cwd):
378 deps = FileToText(os.path.join(cwd, "DEPS"))
395 self.GitCheckoutFileSafe("DEPS", "HEAD", cwd=cwd)
408 self.GitCheckout("master", cwd=self._options.chromium)
409 self.GitDeleteBranch(self.Config("BRANCHNAME"), cwd=self._options.chromium)