Searched refs:submoduleDir (Results 1 – 1 of 1) sorted by relevance
/third_party/typescript/src/testRunner/ |
D | externalCompileRunner.ts | 57 const submoduleDir = path.join(cwd, directoryName); constant 58 if (!fs.existsSync(submoduleDir)) { 59 …exec("git", ["--work-tree", submoduleDir, "clone", config.cloneUrl, path.join(submoduleDir, ".git"… 62 …", ["--git-dir", path.join(submoduleDir, ".git"), "--work-tree", submoduleDir, "reset", "HEAD", "-… 63 …c("git", ["--git-dir", path.join(submoduleDir, ".git"), "--work-tree", submoduleDir, "clean", "-f"… 64 …c("git", ["--git-dir", path.join(submoduleDir, ".git"), "--work-tree", submoduleDir, "pull", "-f"]… 69 cwd = config.path ? path.join(cwd, config.path) : submoduleDir;
|