* Returns the list of files changed relative to the branch point off of the * main branch, one on each line. * @return {!Array }
()
| 64 | * @return {!Array<string>} |
| 65 | */ |
| 66 | function gitDiffNameOnlyMain() { |
| 67 | const mainBaseline = gitMainBaseline(); |
| 68 | return getStdout(`git diff --name-only ${mainBaseline}`).trim().split('\n'); |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Returns the list of files changed relative to the branch point off of the |
no test coverage detected