* Run `git` command with the arguments * @param {...string[]} args - Git args
(...args)
| 116 | * @param {...string[]} args - Git args |
| 117 | */ |
| 118 | async function git(...args) { |
| 119 | console.log('> git', ...args); |
| 120 | const shell = build.runShell('git', args, { |
| 121 | cwd: ROOT_DIR, |
| 122 | }); |
| 123 | await waitForProcessExit(shell); |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Return a promise to be resolved by the child process exit event |
no test coverage detected